diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f57d7be6191..fa63fbaf7a2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,7 +23,7 @@ jobs: - bash: | echo "Check Title of Pull Request: #$(System.PullRequest.PullRequestNumber)" title=$(curl https://api.github.com/repos/$(Build.Repository.Name)/pulls/$(System.PullRequest.PullRequestNumber) | jq -r '.title') - if [ "$(System.PullRequest.TargetBranch)" != "release" ] && echo $title | grep -iqF hotfix; then + if [ "$(System.PullRequest.TargetBranch)" != "release" ] && echo $title | grep -iqF hotfix:; then echo "Hotfix PR should target release branch." exit 1 fi @@ -122,7 +122,7 @@ jobs: - task: UsePythonVersion@0 displayName: 'Use Python 3' inputs: - versionSpec: 3.x + versionSpec: 3.8 - task: BatchScript@1 inputs: @@ -685,7 +685,7 @@ jobs: distro: stretch Buster: deb_system: debian - distro: buster + distro: buster steps: - task: DownloadPipelineArtifact@1 displayName: 'Download Build Artifacts' @@ -739,7 +739,7 @@ jobs: distro: stretch Buster: deb_system: debian - distro: buster + distro: buster pool: vmImage: 'ubuntu-16.04' steps: diff --git a/doc/authoring_command_modules/README.md b/doc/authoring_command_modules/README.md index 5c9c4f804f0..df328accf66 100644 --- a/doc/authoring_command_modules/README.md +++ b/doc/authoring_command_modules/README.md @@ -213,12 +213,12 @@ History notes are auto-generated based on PR titles and descriptions starting fr Examples of customer-facing change PR title: ->[Storage] BREAKING CHANGE: az storage remove: Remove --auth-mode argument ->[ARM] Fix #10246: az resource tag crashes when the parameter --ids passed in is resource group ID +> [Storage] BREAKING CHANGE: az storage remove: Remove --auth-mode argument +> [ARM] Fix #10246: az resource tag crashes when the parameter --ids passed in is resource group ID An example of non-customer-facing change PR title: ->{Aladdin} Add help example for dns +> {Aladdin} Add help example for dns ### Format PR Description @@ -227,11 +227,14 @@ Please follow the instruction in the PR template to provide a description of the If you would like to write multiple history notes for one PR or overwrite the message in the PR title as a history note, please write the notes under `History Notes` section in the PR description, following the same format described above. The PR template already contains the history note template, just change it if needed. In this case, the PR title could be a summary of all the changes in this PR and will not be put into `HISTORY.rst` in our pipeline. The PR title still needs to start with `[Component Name]`. You can delete the `History Notes` section if not needed. ### Hotfix PR -Step 1: Create a hotfix branch based on release branch, then submit a PR to merge hotfix into release. -In this PR, the second part of the PR title should be `Hotfix`. If you have customer-facing changes, you need to manually modify `HISTORY.rst` to add history notes. The auto generated history notes for the next regular release will ignore the PR that contains `Hotfix`. -Step 2: Submit a PR to merge the release branch back into dev branch after the hotfix release. -Do **NOT** squash and merge this PR. After the PR gets approved by code owners, you should fast forward dev to release on your local machine and then push dev to upstream repository. +Step 1: Create a hotfix branch based on `release` branch, then submit a PR to merge the hotfix branch into `release`. + +In this PR, the second part of the PR title should be `Hotfix`. If you have customer-facing changes, you need to manually modify `HISTORY.rst` to add history notes. The auto-generated history notes for the next regular release will ignore the PR that contains `Hotfix`. An example title of hotfix change PR: ->{Packaging} Hotfix: Fix dependency error +> {Packaging} Hotfix: Fix dependency error + +Step 2: After the hotfix version is released, submit a PR to merge `release` branch back to `dev` (e.g. [#15505](https://github.com/Azure/azure-cli/pull/15505)). + +⚠ Do **NOT** squash merge this PR. After the PR gets approved by code owners, merge `release` to `dev` by creating a **merge commit** on your local machine, then push `dev` to upstream repository. The PR will automatically be marked as **Merged**. diff --git a/scripts/live_test/CLITest.yml b/scripts/live_test/CLITest.yml index 936421dd4b2..d9e8dfde15f 100644 --- a/scripts/live_test/CLITest.yml +++ b/scripts/live_test/CLITest.yml @@ -24,7 +24,7 @@ jobs: displayName: Live Test Python 3.8 timeoutInMinutes: 9999 strategy: - maxParallel: 20 + maxParallel: 5 matrix: acr: Target: acr @@ -324,7 +324,7 @@ jobs: echo "##vso[task.setvariable variable=Match]0" fi - task: UsePythonVersion@0 - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) inputs: versionSpec: '3.8' addToPath: true @@ -399,34 +399,34 @@ jobs: git push origin $(USER_BRANCH) fi - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) - task: PublishTestResults@2 - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) inputs: testResultsFiles: '/home/vsts/work/1/test_results.*.xml' testRunTitle: 'Azure CLI live test results of $(Target)' mergeTestResults: true # testResultsFormat: 'JUnit' - task: PublishBuildArtifacts@1 - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) inputs: PathtoPublish: '/home/vsts/work/1/$(Target).report.sequential.json' ArtifactName: '$(Target).report.sequential.json' publishLocation: 'Container' - task: PublishBuildArtifacts@1 - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) inputs: PathtoPublish: '/home/vsts/work/1/$(Target).report.sequential.html' ArtifactName: '$(Target).report.sequential.html' publishLocation: 'Container' - task: PublishBuildArtifacts@1 - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) inputs: PathtoPublish: '/home/vsts/work/1/$(Target).report.parallel.json' ArtifactName: '$(Target).report.parallel.json' publishLocation: 'Container' - task: PublishBuildArtifacts@1 - condition: eq(variables.Match, '1') + condition: and(succeededOrFailed(), eq(variables.Match, '1')) inputs: PathtoPublish: '/home/vsts/work/1/$(Target).report.parallel.html' ArtifactName: '$(Target).report.parallel.html' diff --git a/scripts/live_test/HISTORY.rst b/scripts/live_test/HISTORY.rst index f324e7edaf1..fa54a49740c 100644 --- a/scripts/live_test/HISTORY.rst +++ b/scripts/live_test/HISTORY.rst @@ -3,18 +3,26 @@ Release History =============== -0.6.0 +0.7.0 (10/23/2020) ++++++ + +* Improve index.html. Move report link inside table. Display number of tests in link name. +* Fix a small problem of job condition. + +0.6.0 (10/19/2020) +++++++ + * Remove module iotcentral. * Support testing Azure CLI extensions. -0.5.0 +0.5.0 (10/10/2020) ++++++ + * Update index.html design. * Add module data table. * Add retry for CLI commands. -0.4.0 +0.4.0 (9/27/2020) ++++++ * Update pipeline run title. @@ -22,14 +30,14 @@ Release History * Design a unique representation of a pipeline run. * Make storage account container public. -0.3.0 +0.3.0 (9/14/2020) ++++++ * Support upgrading API version in pipeline. * Fix a tiny DB bug. * Fix pipe not close problem. -0.2.0 +0.2.0 (9/4/2020) ++++++ * Fix a tiny bug of sequential run. @@ -37,7 +45,7 @@ Release History * Fix a bug of module name sorting. * Update notification email format. -0.1.0 +0.1.0 (8/24/2020) ++++++ * Remove schedule in debug mode. diff --git a/scripts/live_test/generate_index.py b/scripts/live_test/generate_index.py index 991b841e3ee..9654ea4cd86 100644 --- a/scripts/live_test/generate_index.py +++ b/scripts/live_test/generate_index.py @@ -8,6 +8,7 @@ """ import traceback import os +import re import requests import xml.etree.ElementTree as ET @@ -20,6 +21,7 @@ def generate(container, container_url, testdata, USER_REPO, USER_BRANCH, COMMIT_ :return: """ print('Enter generate()') + # [{'name': name, 'url': url}] data = [] url = container_url + '?restype=container&comp=list' content = requests.get(url).content @@ -100,6 +102,7 @@ def render(data, container, container_url, testdata, USER_REPO, USER_BRANCH, COM Pass Fail Pass rate + Reports """ @@ -109,34 +112,56 @@ def render(data, container, container_url, testdata, USER_REPO, USER_BRANCH, COM {} {} {} + """.format(testdata.total[1], testdata.total[2], testdata.total[3]) for module, passed, failed, rate in testdata.modules: + reports = '' + for x in data: + name = x['name'] + url = x['url'] + if name.startswith(module + '.'): + display_name = 'report' + if 'parallel' in name: + display_name = 'parallel' + elif 'sequential' in name: + display_name = 'sequential' + try: + html = requests.get(url).content.__str__() + pattern = re.compile('\\d+ tests ran in') + match = pattern.search(html) + number = match.group().split()[0] + if number.isdigit(): + display_name += '(' + number + ')' + except: + traceback.print_exc() + reports += '{} '.format(url, display_name) table += """ {} {} {} {} + {} - """.format(module, passed, failed, rate) + """.format(module, passed, failed, rate, reports) table += """ """ content += table - content += """ -

Reports

- """ - - for item in data: - name = item['name'] - url = item['url'] - content += """ - {}
- """.format(url, name) + # content += """ + #

Reports

+ # """ + # + # for item in data: + # name = item['name'] + # url = item['url'] + # content += """ + # {}
+ # """.format(url, name) content += """ diff --git a/src/azure-cli-core/azure/cli/core/_profile.py b/src/azure-cli-core/azure/cli/core/_profile.py index 3dee2b62679..79e08e5c91b 100644 --- a/src/azure-cli-core/azure/cli/core/_profile.py +++ b/src/azure-cli-core/azure/cli/core/_profile.py @@ -559,26 +559,35 @@ def get_login_credentials(self, resource=None, subscription_id=None, aux_subscri external_tenants_info.append(sub[_TENANT_ID]) if identity_type is None: - def _retrieve_token(): + def _retrieve_token(sdk_resource=None): + # When called by + # - Track 1 SDK, use `resource` specified by CLI + # - Track 2 SDK, use `sdk_resource` specified by SDK and ignore `resource` specified by CLI + token_resource = sdk_resource or resource + logger.debug("Retrieving token from ADAL for resource %r", token_resource) + if in_cloud_console() and account[_USER_ENTITY].get(_CLOUD_SHELL_ID): - return self._get_token_from_cloud_shell(resource) + return self._get_token_from_cloud_shell(token_resource) if user_type == _USER: return self._creds_cache.retrieve_token_for_user(username_or_sp_id, - account[_TENANT_ID], resource) + account[_TENANT_ID], token_resource) use_cert_sn_issuer = account[_USER_ENTITY].get(_SERVICE_PRINCIPAL_CERT_SN_ISSUER_AUTH) - return self._creds_cache.retrieve_token_for_service_principal(username_or_sp_id, resource, + return self._creds_cache.retrieve_token_for_service_principal(username_or_sp_id, token_resource, account[_TENANT_ID], use_cert_sn_issuer) - def _retrieve_tokens_from_external_tenants(): + def _retrieve_tokens_from_external_tenants(sdk_resource=None): + token_resource = sdk_resource or resource + logger.debug("Retrieving token from ADAL for external tenants and resource %r", token_resource) + external_tokens = [] for sub_tenant_id in external_tenants_info: if user_type == _USER: external_tokens.append(self._creds_cache.retrieve_token_for_user( - username_or_sp_id, sub_tenant_id, resource)) + username_or_sp_id, sub_tenant_id, token_resource)) else: external_tokens.append(self._creds_cache.retrieve_token_for_service_principal( - username_or_sp_id, resource, sub_tenant_id, resource)) + username_or_sp_id, token_resource, sub_tenant_id, token_resource)) return external_tokens from azure.cli.core.adal_authentication import AdalAuthentication @@ -621,6 +630,8 @@ def get_refresh_token(self, resource=None, return username_or_sp_id, sp_secret, None, str(account[_TENANT_ID]) def get_raw_token(self, resource=None, subscription=None, tenant=None): + logger.debug("Profile.get_raw_token invoked with resource=%r, subscription=%r, tenant=%r", + resource, subscription, tenant) if subscription and tenant: raise CLIError("Please specify only one of subscription and tenant, not both") account = self.get_subscription(subscription) diff --git a/src/azure-cli-core/azure/cli/core/adal_authentication.py b/src/azure-cli-core/azure/cli/core/adal_authentication.py index 7ff90a1bd31..a4496b05d7a 100644 --- a/src/azure-cli-core/azure/cli/core/adal_authentication.py +++ b/src/azure-cli-core/azure/cli/core/adal_authentication.py @@ -10,9 +10,12 @@ from msrest.authentication import Authentication from msrestazure.azure_active_directory import MSIAuthentication from azure.core.credentials import AccessToken -from azure.cli.core.util import in_cloud_console +from azure.cli.core.util import in_cloud_console, scopes_to_resource from knack.util import CLIError +from knack.log import get_logger + +logger = get_logger(__name__) class AdalAuthentication(Authentication): # pylint: disable=too-few-public-methods @@ -21,12 +24,15 @@ def __init__(self, token_retriever, external_tenant_token_retriever=None): self._token_retriever = token_retriever self._external_tenant_token_retriever = external_tenant_token_retriever - def _get_token(self): + def _get_token(self, sdk_resource=None): + """ + :param sdk_resource: `resource` converted from Track 2 SDK's `scopes` + """ external_tenant_tokens = None try: - scheme, token, full_token = self._token_retriever() + scheme, token, full_token = self._token_retriever(sdk_resource) if self._external_tenant_token_retriever: - external_tenant_tokens = self._external_tenant_token_retriever() + external_tenant_tokens = self._external_tenant_token_retriever(sdk_resource) except CLIError as err: if in_cloud_console(): AdalAuthentication._log_hostname() @@ -60,7 +66,16 @@ def _get_token(self): # This method is exposed for Azure Core. def get_token(self, *scopes, **kwargs): # pylint:disable=unused-argument - _, token, full_token, _ = self._get_token() + logger.debug("AdalAuthentication.get_token invoked by Track 2 SDK with scopes=%s", scopes) + + # Deal with an old Track 2 SDK issue where the default credential_scopes is extended with + # custom credential_scopes. Instead, credential_scopes should be replaced by custom credential_scopes. + # https://github.com/Azure/azure-sdk-for-python/issues/12947 + # We simply remove the first one if there are multiple scopes provided. + if len(scopes) > 1: + scopes = scopes[1:] + + _, token, full_token, _ = self._get_token(scopes_to_resource(scopes)) try: return AccessToken(token, int(full_token['expiresIn'] + time.time())) except KeyError: # needed to deal with differing unserialized MSI token payload @@ -68,6 +83,7 @@ def get_token(self, *scopes, **kwargs): # pylint:disable=unused-argument # This method is exposed for msrest. def signed_session(self, session=None): # pylint: disable=arguments-differ + logger.debug("AdalAuthentication.signed_session invoked by Track 1 SDK") session = session or super(AdalAuthentication, self).signed_session() scheme, token, _, external_tenant_tokens = self._get_token() @@ -82,8 +98,6 @@ def signed_session(self, session=None): # pylint: disable=arguments-differ @staticmethod def _log_hostname(): import socket - from knack.log import get_logger - logger = get_logger(__name__) logger.warning("A Cloud Shell credential problem occurred. When you report the issue with the error " "below, please mention the hostname '%s'", socket.gethostname()) @@ -91,13 +105,13 @@ def _log_hostname(): class MSIAuthenticationWrapper(MSIAuthentication): # This method is exposed for Azure Core. Add *scopes, **kwargs to fit azure.core requirement def get_token(self, *scopes, **kwargs): # pylint:disable=unused-argument + logger.debug("MSIAuthenticationWrapper.get_token invoked by Track 2 SDK with scopes=%s", scopes) + self.resource = scopes_to_resource(scopes) self.set_token() return AccessToken(self.token['access_token'], int(self.token['expires_on'])) def set_token(self): import traceback - from knack.log import get_logger - logger = get_logger(__name__) from azure.cli.core.azclierror import AzureConnectionError, AzureResponseError try: super(MSIAuthenticationWrapper, self).set_token() @@ -117,3 +131,7 @@ def set_token(self): traceback.format_exc()) raise AzureConnectionError('MSI endpoint is not responding. Please make sure MSI is configured correctly.\n' 'Error detail: {}'.format(str(err))) + + def signed_session(self, session=None): + logger.debug("MSIAuthenticationWrapper.signed_session invoked by Track 1 SDK") + super().signed_session(session) diff --git a/src/azure-cli-core/azure/cli/core/commands/client_factory.py b/src/azure-cli-core/azure/cli/core/commands/client_factory.py index 8a9472469f8..c8c4b5aa1bd 100644 --- a/src/azure-cli-core/azure/cli/core/commands/client_factory.py +++ b/src/azure-cli-core/azure/cli/core/commands/client_factory.py @@ -150,6 +150,7 @@ def _get_mgmt_service_client(cli_ctx, aux_tenants=None, **kwargs): from azure.cli.core._profile import Profile + from azure.cli.core.util import resource_to_scopes logger.debug('Getting management service client client_type=%s', client_type.__name__) resource = resource or cli_ctx.cloud.endpoints.active_directory_resource_id profile = Profile(cli_ctx=cli_ctx) @@ -169,6 +170,7 @@ def _get_mgmt_service_client(cli_ctx, if is_track2(client_type): client_kwargs.update(configure_common_settings_track2(cli_ctx)) + client_kwargs['credential_scopes'] = resource_to_scopes(resource) if subscription_bound: client = client_type(cred, subscription_id, **client_kwargs) diff --git a/src/azure-cli-core/azure/cli/core/tests/test_util.py b/src/azure-cli-core/azure/cli/core/tests/test_util.py index 821a3537063..c2b5405fea2 100644 --- a/src/azure-cli-core/azure/cli/core/tests/test_util.py +++ b/src/azure-cli-core/azure/cli/core/tests/test_util.py @@ -377,6 +377,41 @@ def test_send_raw_requests(self, send_mock, get_raw_token_mock): request = send_mock.call_args.args[1] self.assertEqual(request.headers['User-Agent'], get_az_rest_user_agent() + ' env-ua ARG-UA') + def test_scopes_to_resource(self): + from azure.cli.core.util import scopes_to_resource + # scopes as a list + self.assertEqual(scopes_to_resource(['https://management.core.windows.net//.default']), + 'https://management.core.windows.net/') + # scopes as a tuple + self.assertEqual(scopes_to_resource(('https://storage.azure.com/.default',)), + 'https://storage.azure.com') + + # resource with trailing slash + self.assertEqual(scopes_to_resource(('https://management.azure.com//.default',)), + 'https://management.azure.com/') + self.assertEqual(scopes_to_resource(['https://datalake.azure.net//.default']), + 'https://datalake.azure.net/') + + # resource without trailing slash + self.assertEqual(scopes_to_resource(('https://managedhsm.azure.com/.default',)), + 'https://managedhsm.azure.com') + + def test_resource_to_scopes(self): + from azure.cli.core.util import resource_to_scopes + # resource converted to a scopes list + self.assertEqual(resource_to_scopes('https://management.core.windows.net/'), + ['https://management.core.windows.net//.default']) + + # resource with trailing slash + self.assertEqual(resource_to_scopes('https://management.azure.com/'), + ['https://management.azure.com//.default']) + self.assertEqual(resource_to_scopes('https://datalake.azure.net/'), + ['https://datalake.azure.net//.default']) + + # resource without trailing slash + self.assertEqual(resource_to_scopes('https://managedhsm.azure.com'), + ['https://managedhsm.azure.com/.default']) + class TestBase64ToHex(unittest.TestCase): diff --git a/src/azure-cli-core/azure/cli/core/util.py b/src/azure-cli-core/azure/cli/core/util.py index 283f7e9bb7f..aa15a16d041 100644 --- a/src/azure-cli-core/azure/cli/core/util.py +++ b/src/azure-cli-core/azure/cli/core/util.py @@ -1165,3 +1165,36 @@ def handle_version_update(): refresh_known_clouds() except Exception as ex: # pylint: disable=broad-except logger.warning(ex) + + +def resource_to_scopes(resource): + """Convert the ADAL resource ID to MSAL scopes by appending the /.default suffix and return a list. + For example: + 'https://management.core.windows.net/' -> ['https://management.core.windows.net//.default'] + 'https://managedhsm.azure.com' -> ['https://managedhsm.azure.com/.default'] + + :param resource: The ADAL resource ID + :return: A list of scopes + """ + # https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent#trailing-slash-and-default + # We should not trim the trailing slash, like in https://management.azure.com/ + # In other word, the trailing slash should be preserved and scope should be https://management.azure.com//.default + scope = resource + '/.default' + return [scope] + + +def scopes_to_resource(scopes): + """Convert MSAL scopes to ADAL resource by stripping the /.default suffix and return a str. + For example: + ['https://management.core.windows.net//.default'] -> 'https://management.core.windows.net/' + ['https://managedhsm.azure.com/.default'] -> 'https://managedhsm.azure.com' + + :param scopes: The MSAL scopes. It can be a list or tuple of string + :return: The ADAL resource + :rtype: str + """ + scope = scopes[0] + if scope.endswith("/.default"): + scope = scope[:-len("/.default")] + + return scope diff --git a/src/azure-cli/azure/cli/command_modules/acs/_consts.py b/src/azure-cli/azure/cli/command_modules/acs/_consts.py index fcf74dceb68..e6a48da6414 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_consts.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_consts.py @@ -11,3 +11,6 @@ CONST_SPOT_EVICTION_POLICY_DELETE = "Delete" CONST_SPOT_EVICTION_POLICY_DEALLOCATE = "Deallocate" + +CONST_OS_DISK_TYPE_MANAGED = "Managed" +CONST_OS_DISK_TYPE_EPHEMERAL = "Ephemeral" diff --git a/src/azure-cli/azure/cli/command_modules/acs/_help.py b/src/azure-cli/azure/cli/command_modules/acs/_help.py index cfa1fbad2ae..8c5c058573a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_help.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_help.py @@ -205,6 +205,9 @@ - name: --node-osdisk-size type: int short-summary: Size in GB of the OS disk for each node in the node pool. Minimum 30 GB. + - name: --node-osdisk-type + type: string + short-summary: OS disk type to be used for machines in a given agent pool. Defaults to 'Ephemeral' when possible in conjunction with VM size and OS disk size. May not be changed for this pool after creation. - name: --kubernetes-version -k type: string short-summary: Version of Kubernetes to use for creating the cluster, such as "1.16.9". @@ -407,6 +410,8 @@ text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-aad --aad-admin-group-object-ids --aad-tenant-id - name: Create a kubernetes cluster with server side encryption using your owned key. text: az aks create -g MyResourceGroup -n MyManagedCluster --node-osdisk-diskencryptionset-id + - name: Create a kubernetes cluster with ephemeral OS enabled. + text: az aks create -g MyResourceGroup -n MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48 """ helps['aks update'] = """ @@ -621,6 +626,9 @@ - name: --node-osdisk-size type: int short-summary: Size in GB of the OS disk for each node in the agent pool. Minimum 30 GB. + - name: --node-osdisk-type + type: string + short-summary: OS disk type to be used for machines in a given agent pool. Defaults to 'Ephemeral' when possible in conjunction with VM size and OS disk size. May not be changed for this pool after creation. - name: --max-pods -m type: int short-summary: The maximum number of pods deployable to a node. @@ -667,6 +675,9 @@ - name: --spot-max-price type: float short-summary: It can only be set when --priority is Spot. Specify the maximum price you are willing to pay in US Dollars. Possible values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. It can only include up to 5 decimal places. +examples: + - name: Create a nodepool in an existing AKS cluster with ephemeral os enabled. + text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48 """ helps['aks nodepool delete'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/acs/_params.py b/src/azure-cli/azure/cli/command_modules/acs/_params.py index 0564098271c..6a292b44f8e 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_params.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_params.py @@ -25,7 +25,8 @@ validate_load_balancer_outbound_ports, validate_load_balancer_idle_timeout, validate_vnet_subnet_id, validate_nodepool_labels, validate_ppg) from ._consts import CONST_OUTBOUND_TYPE_LOAD_BALANCER, CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING, \ CONST_SCALE_SET_PRIORITY_REGULAR, CONST_SCALE_SET_PRIORITY_SPOT, \ - CONST_SPOT_EVICTION_POLICY_DELETE, CONST_SPOT_EVICTION_POLICY_DEALLOCATE + CONST_SPOT_EVICTION_POLICY_DELETE, CONST_SPOT_EVICTION_POLICY_DEALLOCATE, \ + CONST_OS_DISK_TYPE_MANAGED, CONST_OS_DISK_TYPE_EPHEMERAL orchestrator_types = ["Custom", "DCOS", "Kubernetes", "Swarm", "DockerCE"] @@ -297,6 +298,7 @@ def load_arguments(self, _): c.argument('mode', get_enum_type(nodepool_mode_type)) c.argument('enable_node_public_ip', action='store_true', is_preview=True) c.argument('ppg', type=str, validator=validate_ppg) + c.argument('node_os_disk_type', arg_type=get_enum_type([CONST_OS_DISK_TYPE_MANAGED, CONST_OS_DISK_TYPE_EPHEMERAL])) for scope in ['aks nodepool show', 'aks nodepool delete', 'aks nodepool scale', 'aks nodepool upgrade', 'aks nodepool update']: with self.argument_context(scope) as c: diff --git a/src/azure-cli/azure/cli/command_modules/acs/custom.py b/src/azure-cli/azure/cli/command_modules/acs/custom.py index ee7d8fd2e6e..ebae1256a69 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/custom.py +++ b/src/azure-cli/azure/cli/command_modules/acs/custom.py @@ -62,7 +62,6 @@ from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterServicePrincipalProfile from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceSshConfiguration from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceSshPublicKey -from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceStorageProfileTypes from azure.mgmt.containerservice.v2020_09_01.models import ManagedCluster from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterAADProfile from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterAddonProfile @@ -1593,6 +1592,7 @@ def aks_create(cmd, client, resource_group_name, name, ssh_key_value, # pylint: enable_ahub=False, kubernetes_version='', node_vm_size="Standard_DS2_v2", + node_osdisk_type=None, node_osdisk_size=0, node_osdisk_diskencryptionset_id=None, node_count=3, @@ -1666,7 +1666,6 @@ def aks_create(cmd, client, resource_group_name, name, ssh_key_value, # pylint: count=int(node_count), vm_size=node_vm_size, os_type="Linux", - storage_profile=ContainerServiceStorageProfileTypes.managed_disks, vnet_subnet_id=vnet_subnet_id, proximity_placement_group_id=ppg, availability_zones=zones, @@ -1678,6 +1677,9 @@ def aks_create(cmd, client, resource_group_name, name, ssh_key_value, # pylint: 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) linux_profile = None @@ -2904,6 +2906,7 @@ def aks_agentpool_add(cmd, client, resource_group_name, cluster_name, nodepool_n zones=None, enable_node_public_ip=False, node_vm_size=None, + node_osdisk_type=None, node_osdisk_size=0, node_count=3, vnet_subnet_id=None, @@ -2950,7 +2953,6 @@ def aks_agentpool_add(cmd, client, resource_group_name, cluster_name, nodepool_n count=int(node_count), vm_size=node_vm_size, os_type=os_type, - storage_profile=ContainerServiceStorageProfileTypes.managed_disks, vnet_subnet_id=vnet_subnet_id, proximity_placement_group_id=ppg, agent_pool_type="VirtualMachineScaleSets", @@ -2974,6 +2976,9 @@ def aks_agentpool_add(cmd, client, resource_group_name, cluster_name, nodepool_n if node_osdisk_size: agent_pool.os_disk_size_gb = int(node_osdisk_size) + if node_osdisk_type: + agent_pool.os_disk_type = node_osdisk_type + return sdk_no_wait(no_wait, client.create_or_update, resource_group_name, cluster_name, nodepool_name, agent_pool) diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml index cd0fa3bc474..da0936419c7 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml @@ -1,315 +1,4 @@ interactions: -- request: - body: '{"location": "westus2", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-24T18:14:25Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '111' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-06-24T18:14:25Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '269' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Jun 2019 18:14:29 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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - -n --skip-assignment - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fclitest000002%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Mon, 24 Jun 2019 18:14:30 GMT - duration: - - '859660' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - ZGx5BTxWx3rJ0qV6fN7KouGYhLhktis4+Etrku5CN4A= - ocp-aad-session-key: - - UGFndmZaCdghPDAZuRH2BTxeKJGb5Hgl7h7XplcuMKfFpCQI_JUBErIsY-nhbwaxrcAo6xMuOffXnEDqVtrwdAtUEw3kPEkmVd_shRABJVCwk7WkacdBS1x-HmZ1D3cjtXffvS8Bb59Qp3WSLtc3Sw.I4kailETcPONQr6XZCLjoScxNdj7pWPav9VzBGyvxLo - pragma: - - no-cache - request-id: - - 15075038-333a-4d3f-bf5a-63c637d73974 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - -n --skip-assignment - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=startswith%28displayName%2C%27clitest000002%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Mon, 24 Jun 2019 18:14:30 GMT - duration: - - '651708' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - /lC86iJ3cwwJGyTWjAKYWDPkB/lyglon9hmrn0nLUXM= - ocp-aad-session-key: - - y30ODVmG-b5FsJHC8LFfMigYtF6Pl-UqfkGS0ny4mJbZSrujil_9B_I7I_4FYT3G6gaSQqBnyQktrd0CARqXTnRgarfLp6YQ6XhudqGu6UgBnVha0G9lTodiOSyQIg3qgMsXVTxMTGsgCS8c0k-FHg.Xo1jhG5gNoSPzZG-TZ4HJ5jpkvTtHah7YCZpQCRFlEs - pragma: - - no-cache - request-id: - - b79e90d6-81ed-474d-960e-c08a65a20cb8 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"availableToOtherTenants": false, "homepage": "https://clitest000002", - "passwordCredentials": [{"startDate": "2019-06-24T18:14:30.843139Z", "endDate": - "2020-06-24T18:14:30.843139Z", "keyId": "3ffd9a1d-548f-4f12-8ac7-d4ab93b58d41", - "value": "1a6b1dd1-1982-432d-a59e-c327effe2fd7", "customKeyIdentifier": "//5yAGIAYQBjAA=="}], - "displayName": "clitest000002", "identifierUris": ["http://clitest000002"]}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '434' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n --skip-assignment - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"d3cc48d8-9987-4881-9aa8-c3db5615ccb5","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"db8b07f6-5fd5-484e-a836-aa1547ed89f8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://clitest000002","identifierUris":["http://clitest000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/d3cc48d8-9987-4881-9aa8-c3db5615ccb5/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; - charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d3cc48d8-9987-4881-9aa8-c3db5615ccb5/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access clitest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest000002","id":"75a3af7a-b089-49d8-89ed-9c8b6a81cad6","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access clitest000002 on your behalf.","userConsentDisplayName":"Access - clitest000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-06-24T18:14:30.843139Z","keyId":"3ffd9a1d-548f-4f12-8ac7-d4ab93b58d41","startDate":"2019-06-24T18:14:30.843139Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2345' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Mon, 24 Jun 2019 18:14:30 GMT - duration: - - '3920380' - expires: - - '-1' - location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d3cc48d8-9987-4881-9aa8-c3db5615ccb5/Microsoft.DirectoryServices.Application - ocp-aad-diagnostics-server-name: - - R7GE/wZDw5mYOVlPUsy4LuVepndfwrdQz1ATlcVdHv4= - ocp-aad-session-key: - - fS35PMt0zbQRt8h7xO8w3hS_EV-hOM2-JRJGOziHiKsudG-fTfRz6frSFxsUoC88lgdExZkE3WsHkLFUzOMCeYIMII9S0IFxAJjROnowfrgoJKoLK4zMshnVTi_nXYLKo5o425mSCM9wcc8MFV1sOw.IviKFPFk0VoeBusw-rcbHm9m6oiPWxaHIr4l9cHDhi8 - pragma: - - no-cache - request-id: - - 14f0cd8e-48cb-46ee-999e-c587ff6d78b7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: '{"accountEnabled": "True", "appId": "db8b07f6-5fd5-484e-a836-aa1547ed89f8"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '75' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n --skip-assignment - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"7310726f-fde4-47a5-b749-3ef945a83f24","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest000002","appId":"db8b07f6-5fd5-484e-a836-aa1547ed89f8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest000002","errorUrl":null,"homepage":"https://clitest000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access clitest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest000002","id":"75a3af7a-b089-49d8-89ed-9c8b6a81cad6","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access clitest000002 on your behalf.","userConsentDisplayName":"Access - clitest000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["db8b07f6-5fd5-484e-a836-aa1547ed89f8","http://clitest000002"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '1746' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Mon, 24 Jun 2019 18:14:31 GMT - duration: - - '2225227' - expires: - - '-1' - location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/7310726f-fde4-47a5-b749-3ef945a83f24/Microsoft.DirectoryServices.ServicePrincipal - ocp-aad-diagnostics-server-name: - - UOr32UtAMU+Eq0/F3AdEK7cYLW38EohupmMJWMjvI+Q= - ocp-aad-session-key: - - vBfoi1_-6BdbG21UgVU07XmxGizVyUvoMbY5gUprUrFo1RfCDNYyoPyQXtF1rin0ZPmDbr69GgrIsduNjLb79XkMJ2o-SZqJen9cVveV7bI50pgIvgFf2iq-JywQVx2j65RYjZLMZ0_-23xkqpyubA.ktk1Cz4si1c-8mJGhRfnBxh6QDnl9hECELdd2q20-cQ - pragma: - - no-cache - request-id: - - bffd4952-843c-48ae-9375-9132d784e00c - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created - request: body: null headers: @@ -324,54 +13,56 @@ interactions: ParameterSetName: - -l --query User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators?api-version=2017-09-30&resource-type=managedClusters + 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/eastus/orchestrators\",\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.10.12\",\n \"upgrades\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.16.13\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.10.13\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.11.8\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.11.9\"\n }\n ]\n + \"1.16.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.11\"\n }\n ]\n \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.10.13\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\"\n },\n {\n + \"1.16.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n {\n \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\": [\n {\n + \"1.17.11\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\": [\n {\n \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.11.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.12.7\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.11.9\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.12.7\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\n }\n ]\n + \"1.17.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.8\"\n }\n ]\n \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.12.7\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.12.8\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.13.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.12.8\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.13.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.13.5\"\n }\n ]\n }\n }" + \"1.17.11\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.19.0\",\n \"isPreview\": true\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2333' + - '2414' content-type: - application/json date: - - Mon, 24 Jun 2019 18:14:32 GMT + - Tue, 27 Oct 2020 15:02:16 GMT expires: - '-1' pragma: @@ -404,24 +95,24 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-06-24T18:14:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-27T15:02:05Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '269' + - '363' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Jun 2019 18:14:32 GMT + - Tue, 27 Oct 2020 15:02:16 GMT expires: - '-1' pragma: @@ -436,136 +127,17 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 - response: - body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '241' - content-type: - - application/json - date: - - Mon, 24 Jun 2019 18:14:50 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: 400 - message: Bad Request -- request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 - response: - body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '241' - content-type: - - application/json - date: - - Mon, 24 Jun 2019 18:15: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: 400 - message: Bad Request -- request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: '{"location": "southcentralus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.18.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "np000005"}], "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": "http://clitest000002", + "secret": "6oy7Pu7wo1wFOMH~PL.DpyXEW1.UvkQES6"}, "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"}}}' headers: Accept: - application/json @@ -576,33 +148,58 @@ interactions: Connection: - keep-alive Content-Length: - - '1236' + - '1632' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" - headers: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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\": 10\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/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 cache-control: - no-cache content-length: - - '241' + - '2715' content-type: - application/json date: - - Mon, 24 Jun 2019 18:15:30 GMT + - Tue, 27 Oct 2020 15:02:30 GMT expires: - '-1' pragma: @@ -614,19 +211,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -636,34 +226,27 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:15:50 GMT + - Tue, 27 Oct 2020 15:03:01 GMT expires: - '-1' pragma: @@ -672,22 +255,17 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -697,34 +275,27 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:16:10 GMT + - Tue, 27 Oct 2020 15:03:32 GMT expires: - '-1' pragma: @@ -733,22 +304,17 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -758,34 +324,27 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:16:30 GMT + - Tue, 27 Oct 2020 15:04:02 GMT expires: - '-1' pragma: @@ -794,22 +353,17 @@ 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: - - '1198' + - nosniff status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -819,34 +373,27 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:16:51 GMT + - Tue, 27 Oct 2020 15:04:33 GMT expires: - '-1' pragma: @@ -855,22 +402,17 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -880,34 +422,27 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:17:11 GMT + - Tue, 27 Oct 2020 15:05:03 GMT expires: - '-1' pragma: @@ -916,22 +451,17 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -941,34 +471,27 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:17:31 GMT + - Tue, 27 Oct 2020 15:05:33 GMT expires: - '-1' pragma: @@ -977,22 +500,17 @@ 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: - - '1197' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -1002,34 +520,28 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/e79f718d-db99-4df3-920d-690fc1364729?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"8d719fe7-99db-f34d-920d-690fc1364729\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-27T15:02:29.3428494Z\",\n \"endTime\": + \"2020-10-27T15:05:51.4886264Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '170' content-type: - application/json date: - - Mon, 24 Jun 2019 18:17:51 GMT + - Tue, 27 Oct 2020 15:06:04 GMT expires: - '-1' pragma: @@ -1038,22 +550,17 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json @@ -1063,34 +570,53 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '241' + - '2990' content-type: - application/json date: - - Mon, 24 Jun 2019 18:18:13 GMT + - Tue, 27 Oct 2020 15:06:05 GMT expires: - '-1' pragma: @@ -1099,59 +625,75 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks list Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n + \ \"tags\": {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n + \ \"osDiskType\": \"Managed\",\n \"maxPods\": 110,\n \"type\": + \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.18.8\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": + {},\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804-2020.10.08\"\n }\n ],\n \"linuxProfile\": {\n + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": + null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '241' + - '3181' content-type: - application/json date: - - Mon, 24 Jun 2019 18:18:32 GMT + - Tue, 27 Oct 2020 15:06:11 GMT expires: - '-1' pragma: @@ -1160,59 +702,74 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '241' + - '2990' content-type: - application/json date: - - Mon, 24 Jun 2019 18:18:55 GMT + - Tue, 27 Oct 2020 15:06:12 GMT expires: - '-1' pragma: @@ -1221,59 +778,74 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '241' + - '2990' content-type: - application/json date: - - Mon, 24 Jun 2019 18:19:15 GMT + - Tue, 27 Oct 2020 15:06:14 GMT expires: - '-1' pragma: @@ -1282,59 +854,94 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: '{"location": "southcentralus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.18.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "maxPods": 110, "osType": "Linux", "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.18.8", "enableNodePublicIP": false, + "nodeLabels": {}, "name": "np000005"}], "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": {"KubeDashboard": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000003_southcentralus", "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", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca"}]}}}, + "sku": {"name": "Basic", "tier": "Free"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive Content-Length: - - '1236' + - '2009' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" - headers: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Scaling\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Scaling\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\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/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 cache-control: - no-cache content-length: - - '241' + - '2986' content-type: - application/json date: - - Mon, 24 Jun 2019 18:19:36 GMT + - Tue, 27 Oct 2020 15:06:25 GMT expires: - '-1' pragma: @@ -1343,59 +950,48 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"d38da4ce-3814-f34c-be39-be4a4b97e457\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:06:22.1627012Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:19:55 GMT + - Tue, 27 Oct 2020 15:06:57 GMT expires: - '-1' pragma: @@ -1404,59 +1000,46 @@ 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: - - '1197' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"d38da4ce-3814-f34c-be39-be4a4b97e457\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:06:22.1627012Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:20:15 GMT + - Tue, 27 Oct 2020 15:07:27 GMT expires: - '-1' pragma: @@ -1465,59 +1048,46 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"d38da4ce-3814-f34c-be39-be4a4b97e457\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:06:22.1627012Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:20:36 GMT + - Tue, 27 Oct 2020 15:07:58 GMT expires: - '-1' pragma: @@ -1526,59 +1096,46 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"d38da4ce-3814-f34c-be39-be4a4b97e457\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:06:22.1627012Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:20:55 GMT + - Tue, 27 Oct 2020 15:08:30 GMT expires: - '-1' pragma: @@ -1587,59 +1144,46 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"d38da4ce-3814-f34c-be39-be4a4b97e457\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:06:22.1627012Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:21:16 GMT + - Tue, 27 Oct 2020 15:09:00 GMT expires: - '-1' pragma: @@ -1648,59 +1192,47 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/cea48dd3-1438-4cf3-be39-be4a4b97e457?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"d38da4ce-3814-f34c-be39-be4a4b97e457\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-27T15:06:22.1627012Z\",\n \"endTime\": + \"2020-10-27T15:09:14.9721185Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '170' content-type: - application/json date: - - Mon, 24 Jun 2019 18:21:35 GMT + - Tue, 27 Oct 2020 15:09:30 GMT expires: - '-1' pragma: @@ -1709,59 +1241,72 @@ 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: - - '1196' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --nodepool-name --node-count User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '241' + - '2990' content-type: - application/json date: - - Mon, 24 Jun 2019 18:21:56 GMT + - Tue, 27 Oct 2020 15:09:31 GMT expires: - '-1' pragma: @@ -1770,59 +1315,74 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"southcentralus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-ab7bc3d3.hcp.southcentralus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_southcentralus\",\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_cliakstest000003_southcentralus/providers/Microsoft.Network/publicIPAddresses/bb16bef8-d3b4-479c-893e-5ebf2cb62cca\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '241' + - '2990' content-type: - application/json date: - - Mon, 24 Jun 2019 18:22:16 GMT + - Tue, 27 Oct 2020 15:09:34 GMT expires: - '-1' pragma: @@ -1831,61 +1391,53 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 cache-control: - no-cache content-length: - - '241' - content-type: - - application/json + - '0' date: - - Mon, 24 Jun 2019 18:22:36 GMT + - Tue, 27 Oct 2020 15:09:36 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operationresults/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 pragma: - no-cache server: @@ -1894,57 +1446,42 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' status: - code: 400 - message: Bad Request + code: 202 + message: Accepted - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:22:57 GMT + - Tue, 27 Oct 2020 15:10:07 GMT expires: - '-1' pragma: @@ -1953,59 +1490,46 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:23:17 GMT + - Tue, 27 Oct 2020 15:10:38 GMT expires: - '-1' pragma: @@ -2014,59 +1538,46 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:23:37 GMT + - Tue, 27 Oct 2020 15:11:08 GMT expires: - '-1' pragma: @@ -2075,59 +1586,46 @@ 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: - - '1195' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:23:57 GMT + - Tue, 27 Oct 2020 15:11:38 GMT expires: - '-1' pragma: @@ -2136,59 +1634,46 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:24:17 GMT + - Tue, 27 Oct 2020 15:12:08 GMT expires: - '-1' pragma: @@ -2197,59 +1682,46 @@ 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: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''b\\\''{"location": "westus2", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": - [{"name": "np000005", "count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux"}], - "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": "clitest000002", - "secret": "1a6b1dd1-1982-432d-a59e-c327effe2fd7"}, "addonProfiles": {}, "enableRBAC": - true}}\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive - Content-Length: - - '1236' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value - --tags -c + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-containerservice/5.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Mon, 24 Jun 2019 18:24:38 GMT + - Tue, 27 Oct 2020 15:12:40 GMT expires: - '-1' pragma: @@ -2258,13 +1730,15 @@ 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: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: @@ -2273,58 +1747,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ad sp delete + - aks delete Connection: - keep-alive ParameterSetName: - - --id + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27db8b07f6-5fd5-484e-a836-aa1547ed89f8%27%29&api-version=1.6 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"7310726f-fde4-47a5-b749-3ef945a83f24","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest000002","appId":"db8b07f6-5fd5-484e-a836-aa1547ed89f8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest000002","errorUrl":null,"homepage":"https://clitest000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access clitest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest000002","id":"75a3af7a-b089-49d8-89ed-9c8b6a81cad6","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access clitest000002 on your behalf.","userConsentDisplayName":"Access - clitest000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest000002","db8b07f6-5fd5-484e-a836-aa1547ed89f8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" + headers: cache-control: - no-cache content-length: - - '1749' + - '126' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json date: - - Mon, 24 Jun 2019 18:24:41 GMT - duration: - - '800091' + - Tue, 27 Oct 2020 15:13:10 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - ISbjmcjIryw8imO8hLdMu3pPCFK4JbNjsBFNQwzSQzU= - ocp-aad-session-key: - - -XXg-0ZpKyqZHB3fVuJGEBntYYCmMBJ61AzUpxxZaWjuONabRXJXtPS6dD1QsDCgi5eh9SnjXkTHYNTLicB2KWsDCoEG__pNv-7VAXJ5tGrqkfCS7DLNEqxSrs28zmXxV09AstXzsVs5cCZE3OIWtA.dARoMzXaYMlrgWf_iTJfP5yQX73b8YzB8Nv1Xi7a--4 pragma: - no-cache - request-id: - - 7a35f3ae-5702-4f94-bd1b-5a1ff70691bf + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -2336,58 +1795,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ad sp delete + - aks delete Connection: - keep-alive ParameterSetName: - - --id + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/7310726f-fde4-47a5-b749-3ef945a83f24?api-version=1.6 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"7310726f-fde4-47a5-b749-3ef945a83f24","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest000002","appId":"db8b07f6-5fd5-484e-a836-aa1547ed89f8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest000002","errorUrl":null,"homepage":"https://clitest000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access clitest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest000002","id":"75a3af7a-b089-49d8-89ed-9c8b6a81cad6","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access clitest000002 on your behalf.","userConsentDisplayName":"Access - clitest000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest000002","db8b07f6-5fd5-484e-a836-aa1547ed89f8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" + headers: cache-control: - no-cache content-length: - - '1746' + - '126' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json date: - - Mon, 24 Jun 2019 18:24:41 GMT - duration: - - '1036262' + - Tue, 27 Oct 2020 15:13:40 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - biC9Kb3qKlp546b35CsAFf9FFqffDjw3uFb6lS4Pg68= - ocp-aad-session-key: - - dI3hKvQ-4J7cZM8PgPZkuRto2FXf5d2IVLU47-G00ksi1N35SdWQjVTdhnfnGejNpn_JYwUX-kEnqLagaVoczrTXFSPTm-_fxYIp8tBgt30WwktCZcdl2yUFDmcn7ViaQCwJE6jnmXYI6AQg4vvmvg.gi7xQOS0MReHLTIUrHJjphGo4KQTD-4HbRyzQoYfhbw pragma: - no-cache - request-id: - - 37cd4175-110c-4534-9911-c37da65feb90 + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -2399,58 +1843,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ad sp delete + - aks delete Connection: - keep-alive ParameterSetName: - - --id + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fclitest000002%27%29&api-version=1.6 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"d3cc48d8-9987-4881-9aa8-c3db5615ccb5","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"db8b07f6-5fd5-484e-a836-aa1547ed89f8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://clitest000002","identifierUris":["http://clitest000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/d3cc48d8-9987-4881-9aa8-c3db5615ccb5/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d3cc48d8-9987-4881-9aa8-c3db5615ccb5/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access clitest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest000002","id":"75a3af7a-b089-49d8-89ed-9c8b6a81cad6","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access clitest000002 on your behalf.","userConsentDisplayName":"Access - clitest000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-06-24T18:14:30.843139Z","keyId":"3ffd9a1d-548f-4f12-8ac7-d4ab93b58d41","startDate":"2019-06-24T18:14:30.843139Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" + headers: cache-control: - no-cache content-length: - - '2262' + - '126' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json date: - - Mon, 24 Jun 2019 18:24:41 GMT - duration: - - '1002261' + - Tue, 27 Oct 2020 15:14:10 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk= - ocp-aad-session-key: - - oF3b6roet-h64pBD0NAzVGYWkEO217nRSMRSDIR6MbbnWgdXf6yL693YkQa4vBPYbZmHlk2th3cXtPYF79OwB6dPC5l-iyLriRwF7ZR9Y5nGES8Id9K4HFyxY8cDfGL8nlEPUmwP6XNQC30lTroscg.3yBZoLTLcG_CFUu8eJAR-4zUrq5sibX_NlO-8F6U50M pragma: - no-cache - request-id: - - abcf1ddb-c645-450b-bfb9-22d5661b5204 + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -2462,58 +1891,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ad sp delete + - aks delete Connection: - keep-alive ParameterSetName: - - --id + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27db8b07f6-5fd5-484e-a836-aa1547ed89f8%27%29&api-version=1.6 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"7310726f-fde4-47a5-b749-3ef945a83f24","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest000002","appId":"db8b07f6-5fd5-484e-a836-aa1547ed89f8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest000002","errorUrl":null,"homepage":"https://clitest000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access clitest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest000002","id":"75a3af7a-b089-49d8-89ed-9c8b6a81cad6","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access clitest000002 on your behalf.","userConsentDisplayName":"Access - clitest000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest000002","db8b07f6-5fd5-484e-a836-aa1547ed89f8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" + headers: cache-control: - no-cache content-length: - - '1749' + - '126' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json date: - - Mon, 24 Jun 2019 18:24:41 GMT - duration: - - '569412' + - Tue, 27 Oct 2020 15:14:41 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - 5tXUu3y+ErO1/XND1tRuShyWMEydPW/DHrlAYL3nHdc= - ocp-aad-session-key: - - mskMvJUzoP1OvsE9WizmBJXdDtVhhgC5IC986zE_AnspD_xxHgIDVAXrKtYO1j3pq-6oCxu0kc3DWaHb9N4611b27RhfW-h8pNoNdwIldbgxlU5y-ZSddzkE0pdUEqzCgOvzH6DiimwQdgOOwdhIWg.SEFR_b4ENUOA7ZK2-Pu3wTLo13fSCinLDPh9fkTtD1c pragma: - no-cache - request-id: - - 73b6b1fc-c047-432d-974e-c781cfd5c695 + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -2525,36 +1939,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ad sp delete + - aks delete Connection: - keep-alive ParameterSetName: - - --id + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%277310726f-fde4-47a5-b749-3ef945a83f24%27&api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: '{"value":[]}' + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\"\n }" headers: cache-control: - no-cache content-length: - - '12' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 24 Jun 2019 18:24:42 GMT + - Tue, 27 Oct 2020 15:15:12 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2563,8 +1976,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-request-charge: - - '1' status: code: 200 message: OK @@ -2576,53 +1987,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ad sp delete + - aks delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --id + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d3cc48d8-9987-4881-9aa8-c3db5615ccb5?api-version=1.6 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/99d4e6ec-f4d4-4b7f-984c-a903eeebdec0?api-version=2017-08-31 response: body: - string: '' + string: "{\n \"name\": \"ece6d499-d4f4-7f4b-984c-a903eeebdec0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-27T15:09:36.8096109Z\",\n \"endTime\": + \"2020-10-27T15:15:41.5013969Z\"\n }" headers: - access-control-allow-origin: - - '*' cache-control: - no-cache + content-length: + - '170' + content-type: + - application/json date: - - Mon, 24 Jun 2019 18:24:42 GMT - duration: - - '2155824' + - Tue, 27 Oct 2020 15:15:42 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - r0o8Zfv+/EsfSzvffV1oL1MCccQ68EumyGGwG7/SNv8= - ocp-aad-session-key: - - 2ZqDEYJb_Dq-2MwvowPP4odYLENDRdYGBioylGEB-oevJ_CC3u3kEEwf02X5V10UEfOh5WvUJSEJo26eNmKOfjlznHUvJHJiDOuOQ7KEO8XUtSKZ0gqTPBNrysX6dyExlHgidHIjLvUJEjkbBI2W2A.Iq7Z7_fdTykU2IUm--zfP0MYoIY3zPNYD-Yop_ER0rg pragma: - no-cache - request-id: - - ac54be26-3019-4739-96a2-4d7ae945f706 + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2631,43 +2036,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - aks show Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes --no-wait + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 response: body: - string: '' + string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed + cluster resource: cliakstest000003 in subscription: 0b1f6471-1bf0-4dda-aec3-cb9272f09590, + resourceGroup: clitest000001.\"\n }" headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Mon, 24 Jun 2019 18:24:45 GMT + - Tue, 27 Oct 2020 15:15:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUSDVVNVpQNldVRS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-06-01 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 + code: 404 + message: Not Found version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml index b7023cf172a..3fb1d889956 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml @@ -13,65 +13,56 @@ interactions: ParameterSetName: - -l --query User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US 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.15.11\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.15.12\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.16.10\"\n },\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"\ - 1.16.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.15.12\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.10\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.16.13\"\n }\n ]\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.10\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.16.13\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.17.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.13\",\n \"default\": true,\n \"upgrades\": [\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.17.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.18.4\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.18.4\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.4\",\n \"isPreview\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.18.6\",\n \"isPreview\": true\n\ - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.18.6\",\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.16.13\",\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.16.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.11\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.16.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.8\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.19.0\",\n \"isPreview\": true\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2925' + - '2414' content-type: - application/json date: - - Sat, 12 Sep 2020 23:22:47 GMT + - Tue, 27 Oct 2020 15:17:10 GMT expires: - '-1' pragma: @@ -104,24 +95,24 @@ interactions: - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size --tags -c --no-wait User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-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":"2020-09-12T23:22: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":"2020-10-27T15:17:01Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '356' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 23:22:48 GMT + - Tue, 27 Oct 2020 15:17:10 GMT expires: - '-1' pragma: @@ -137,13 +128,13 @@ interactions: message: OK - request: body: '{"location": "westus2", "tags": {"scenario_test": ""}, "properties": {"kubernetesVersion": - "1.17.9", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 1, + "1.18.8", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "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": "d1173eb8-7ef3-4844-bc8b-92b7aec4f18f", - "secret": "4b543e21-083c-42f0-b984-ce90fac62990"}, "addonProfiles": {}, "enableRBAC": + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId": "http://clitest000002", + "secret": "VVQQ-4~dLF.7wdHhCOedQ0DT65bPiH_eQW"}, "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"}}}' @@ -157,59 +148,123 @@ interactions: Connection: - keep-alive Content-Length: - - '1629' + - '1622' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size --tags -c --no-wait User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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\": 10\n\ - \ },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: http://clitest000002 not found in Active Directory tenant + 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, Please see https://aka.ms/aks-sp-help + for more details.\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '248' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 15:17:18 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: 400 + message: Bad Request +- request: + body: '{"location": "westus2", "tags": {"scenario_test": ""}, "properties": {"kubernetesVersion": + "1.18.8", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, + "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "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": "http://clitest000002", + "secret": "VVQQ-4~dLF.7wdHhCOedQ0DT65bPiH_eQW"}, "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"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1622' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size + --tags -c --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-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 \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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\": 10\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/60e1e1a2-3041-4ea1-b577-279547f6587a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d6f8636-2f6e-48d5-91b2-e9a2681da078?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2595' + - '2691' content-type: - application/json date: - - Sat, 12 Sep 2020 23:22:54 GMT + - Tue, 27 Oct 2020 15:17:28 GMT expires: - '-1' pragma: @@ -221,7 +276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -239,50 +294,49 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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\": 10\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2595' + - '2691' content-type: - application/json date: - - Sat, 12 Sep 2020 23:22:55 GMT + - Tue, 27 Oct 2020 15:17:29 GMT expires: - '-1' pragma: @@ -314,51 +368,51 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2861' + - '2957' content-type: - application/json date: - - Sat, 12 Sep 2020 23:23:25 GMT + - Tue, 27 Oct 2020 15:18:01 GMT expires: - '-1' pragma: @@ -390,51 +444,51 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2861' + - '2957' content-type: - application/json date: - - Sat, 12 Sep 2020 23:23:55 GMT + - Tue, 27 Oct 2020 15:18:31 GMT expires: - '-1' pragma: @@ -466,51 +520,51 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2861' + - '2957' content-type: - application/json date: - - Sat, 12 Sep 2020 23:24:26 GMT + - Tue, 27 Oct 2020 15:19:01 GMT expires: - '-1' pragma: @@ -542,51 +596,51 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2861' + - '2957' content-type: - application/json date: - - Sat, 12 Sep 2020 23:24:56 GMT + - Tue, 27 Oct 2020 15:19:32 GMT expires: - '-1' pragma: @@ -618,51 +672,51 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2861' + - '2957' content-type: - application/json date: - - Sat, 12 Sep 2020 23:25:26 GMT + - Tue, 27 Oct 2020 15:20:03 GMT expires: - '-1' pragma: @@ -694,51 +748,51 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2863' + - '2959' content-type: - application/json date: - - Sat, 12 Sep 2020 23:25:57 GMT + - Tue, 27 Oct 2020 15:20:34 GMT expires: - '-1' pragma: @@ -770,51 +824,51 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2863' + - '2959' content-type: - application/json date: - - Sat, 12 Sep 2020 23:25:58 GMT + - Tue, 27 Oct 2020 15:20:36 GMT expires: - '-1' pragma: @@ -846,65 +900,56 @@ interactions: ParameterSetName: - -l User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US 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.15.11\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.15.12\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.16.10\"\n },\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"\ - 1.16.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.15.12\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.10\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.16.13\"\n }\n ]\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.10\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.16.13\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.17.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.13\",\n \"default\": true,\n \"upgrades\": [\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.17.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.18.4\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.18.4\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.4\",\n \"isPreview\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.18.6\",\n \"isPreview\": true\n\ - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.18.6\",\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.16.13\",\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.16.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.11\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.16.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.8\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.19.0\",\n \"isPreview\": true\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2925' + - '2414' content-type: - application/json date: - - Sat, 12 Sep 2020 23:25:58 GMT + - Tue, 27 Oct 2020 15:20:37 GMT expires: - '-1' pragma: @@ -936,65 +981,56 @@ interactions: ParameterSetName: - -l -o User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US 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.15.11\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.15.12\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.16.10\"\n },\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"\ - 1.16.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.15.12\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.10\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.16.13\"\n }\n ]\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.10\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.16.13\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.17.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.16.13\",\n \"default\": true,\n \"upgrades\": [\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.17.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.17.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.18.4\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.18.4\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.4\",\n \"isPreview\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.18.6\",\n \"isPreview\": true\n\ - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.18.6\",\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.16.13\",\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.16.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.11\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.16.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.17.9\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.17.9\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.8\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.17.11\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.18.6\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.6\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.18.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.19.0\",\n \"isPreview\": true\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.18.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2925' + - '2414' content-type: - application/json date: - - Sat, 12 Sep 2020 23:25:58 GMT + - Tue, 27 Oct 2020 15:20:38 GMT expires: - '-1' pragma: @@ -1026,30 +1062,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-09-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeprofiles/default\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ - ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \ - \ \"kubernetesVersion\": \"1.18.4\",\n \"isPreview\": true\n \ - \ },\n {\n \"kubernetesVersion\": \"1.18.6\",\n \"isPreview\"\ - : true\n }\n ]\n },\n \"agentPoolProfiles\": null\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n + \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": + \"1.18.8\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": + null\n }\n }" headers: cache-control: - no-cache content-length: - - '605' + - '529' content-type: - application/json date: - - Sat, 12 Sep 2020 23:25:59 GMT + - Tue, 27 Oct 2020 15:20:39 GMT expires: - '-1' pragma: @@ -1081,30 +1116,29 @@ interactions: ParameterSetName: - -g -n --output User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-09-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeprofiles/default\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ - ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \ - \ \"kubernetesVersion\": \"1.18.4\",\n \"isPreview\": true\n \ - \ },\n {\n \"kubernetesVersion\": \"1.18.6\",\n \"isPreview\"\ - : true\n }\n ]\n },\n \"agentPoolProfiles\": null\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n + \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": + \"1.18.8\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": + \"1.19.0\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": + null\n }\n }" headers: cache-control: - no-cache content-length: - - '605' + - '529' content-type: - application/json date: - - Sat, 12 Sep 2020 23:26:00 GMT + - Tue, 27 Oct 2020 15:20:41 GMT expires: - '-1' pragma: @@ -1136,51 +1170,51 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"kubedashboard\": {\n \"enabled\": true,\n\ - \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '2863' + - '2959' content-type: - application/json date: - - Sat, 12 Sep 2020 23:26:00 GMT + - Tue, 27 Oct 2020 15:20:42 GMT expires: - '-1' pragma: @@ -1200,19 +1234,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "tags": {"scenario_test": ""}, "properties": {"kubernetesVersion": - "1.17.9", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 1, + "1.18.8", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "maxPods": 110, "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", - "orchestratorVersion": "1.17.9", "enableNodePublicIP": false, "nodeLabels": + "orchestratorVersion": "1.18.8", "enableNodePublicIP": false, "nodeLabels": {}, "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": {"kubedashboard": {"enabled": true}, - "httpApplicationRouting": {"enabled": true}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + test@example.com\n"}]}}, "addonProfiles": {"KubeDashboard": {"enabled": false}, + "httpApplicationRouting": {"enabled": true}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "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", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98"}]}}}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/381f3f60-54f6-4d11-af2d-7d009bfdec4e"}]}}}, "sku": {"name": "Basic", "tier": "Free"}}' headers: Accept: @@ -1224,62 +1258,61 @@ interactions: Connection: - keep-alive Content-Length: - - '2029' + - '2030' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"httpapplicationrouting\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"httpapplicationroutingzonename\": \"\ - 5419c8d6c7454098b155.westus2.aksapp.io\"\n }\n },\n \"kubedashboard\"\ - : {\n \"enabled\": true,\n \"config\": null\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ },\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": + {\n \"HTTPApplicationRoutingZoneName\": \"2ffe47821cfa4bde9128.westus2.aksapp.io\"\n + \ }\n }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\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/96ecdc44-8dd5-4bd3-bc94-a7ba9cc6be9b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/326895a1-6310-4a11-9c87-b4353228b3c9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3027' + - '3123' content-type: - application/json date: - - Sat, 12 Sep 2020 23:26:05 GMT + - Tue, 27 Oct 2020 15:20:51 GMT expires: - '-1' pragma: @@ -1295,7 +1328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1313,14 +1346,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96ecdc44-8dd5-4bd3-bc94-a7ba9cc6be9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/326895a1-6310-4a11-9c87-b4353228b3c9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44dcec96-d58d-d34b-bc94-a7ba9cc6be9b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:26:04.7046579Z\"\n }" + string: "{\n \"name\": \"a1956832-1063-114a-9c87-b4353228b3c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:20:48.0499853Z\"\n }" headers: cache-control: - no-cache @@ -1329,7 +1362,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:26:35 GMT + - Tue, 27 Oct 2020 15:21:22 GMT expires: - '-1' pragma: @@ -1361,14 +1394,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96ecdc44-8dd5-4bd3-bc94-a7ba9cc6be9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/326895a1-6310-4a11-9c87-b4353228b3c9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44dcec96-d58d-d34b-bc94-a7ba9cc6be9b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:26:04.7046579Z\"\n }" + string: "{\n \"name\": \"a1956832-1063-114a-9c87-b4353228b3c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:20:48.0499853Z\"\n }" headers: cache-control: - no-cache @@ -1377,7 +1410,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:27:06 GMT + - Tue, 27 Oct 2020 15:21:52 GMT expires: - '-1' pragma: @@ -1409,15 +1442,15 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96ecdc44-8dd5-4bd3-bc94-a7ba9cc6be9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/326895a1-6310-4a11-9c87-b4353228b3c9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44dcec96-d58d-d34b-bc94-a7ba9cc6be9b\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-12T23:26:04.7046579Z\",\n \"\ - endTime\": \"2020-09-12T23:27:30.8225753Z\"\n }" + string: "{\n \"name\": \"a1956832-1063-114a-9c87-b4353228b3c9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-27T15:20:48.0499853Z\",\n \"endTime\": + \"2020-10-27T15:22:00.5819816Z\"\n }" headers: cache-control: - no-cache @@ -1426,7 +1459,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:27:36 GMT + - Tue, 27 Oct 2020 15:22:23 GMT expires: - '-1' pragma: @@ -1458,52 +1491,51 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-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 \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.17.9\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-788b903e.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 \"maxPods\": 110,\n \"\ - type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"orchestratorVersion\": \"1.17.9\",\n \"enableNodePublicIP\"\ - : false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\"\ - : \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1604-2020.08.19\"\n \ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"d1173eb8-7ef3-4844-bc8b-92b7aec4f18f\"\n },\n \ - \ \"addonProfiles\": {\n \"httpapplicationrouting\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"httpapplicationroutingzonename\": \"\ - 5419c8d6c7454098b155.westus2.aksapp.io\"\n }\n },\n \"kubedashboard\"\ - : {\n \"enabled\": true,\n \"config\": null\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d03d7b60-5926-4dfd-aa6e-c87ce790ff98\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 10\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\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.18.8\",\n + \ \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e05e332e.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 \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.18.8\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"osType\": + \"Linux\",\n \"nodeImageVersion\": \"AKSUbuntu-1804-2020.10.08\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"KubeDashboard\": {\n \"enabled\": false,\n \"config\": null\n + \ },\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": + {\n \"HTTPApplicationRoutingZoneName\": \"2ffe47821cfa4bde9128.westus2.aksapp.io\"\n + \ }\n }\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/381f3f60-54f6-4d11-af2d-7d009bfdec4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n + }" headers: cache-control: - no-cache content-length: - - '3029' + - '3125' content-type: - application/json date: - - Sat, 12 Sep 2020 23:27:36 GMT + - Tue, 27 Oct 2020 15:22:23 GMT expires: - '-1' pragma: @@ -1537,28 +1569,28 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 23:27:38 GMT + - Tue, 27 Oct 2020 15:22:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 pragma: - no-cache server: @@ -1568,7 +1600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' status: code: 202 message: Accepted @@ -1586,14 +1618,158 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 15:22: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 + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 15:23: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 15:23: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 + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1602,7 +1778,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:28:09 GMT + - Tue, 27 Oct 2020 15:24:28 GMT expires: - '-1' pragma: @@ -1634,14 +1810,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1650,7 +1826,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:28:39 GMT + - Tue, 27 Oct 2020 15:25:00 GMT expires: - '-1' pragma: @@ -1682,14 +1858,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1698,7 +1874,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:29:09 GMT + - Tue, 27 Oct 2020 15:25:30 GMT expires: - '-1' pragma: @@ -1730,14 +1906,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1746,7 +1922,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:29:40 GMT + - Tue, 27 Oct 2020 15:26:00 GMT expires: - '-1' pragma: @@ -1778,14 +1954,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1794,7 +1970,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:30:10 GMT + - Tue, 27 Oct 2020 15:26:30 GMT expires: - '-1' pragma: @@ -1826,14 +2002,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1842,7 +2018,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:30:40 GMT + - Tue, 27 Oct 2020 15:27:01 GMT expires: - '-1' pragma: @@ -1874,14 +2050,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1890,7 +2066,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:31:10 GMT + - Tue, 27 Oct 2020 15:27:32 GMT expires: - '-1' pragma: @@ -1922,14 +2098,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1938,7 +2114,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:31:41 GMT + - Tue, 27 Oct 2020 15:28:02 GMT expires: - '-1' pragma: @@ -1970,14 +2146,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -1986,7 +2162,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:32:11 GMT + - Tue, 27 Oct 2020 15:28:32 GMT expires: - '-1' pragma: @@ -2018,14 +2194,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -2034,7 +2210,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:32:41 GMT + - Tue, 27 Oct 2020 15:29:03 GMT expires: - '-1' pragma: @@ -2066,14 +2242,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\"\n }" headers: cache-control: - no-cache @@ -2082,7 +2258,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:33:11 GMT + - Tue, 27 Oct 2020 15:29:33 GMT expires: - '-1' pragma: @@ -2114,15 +2290,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed801271-0082-4bae-9693-40cc71b08d46?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ddeb3ab-2f16-4420-b692-28894358f5d1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"711280ed-8200-ae4b-9693-40cc71b08d46\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-12T23:27:38.9421443Z\",\n \"\ - endTime\": \"2020-09-12T23:33:31.1331833Z\"\n }" + string: "{\n \"name\": \"abb3de5d-162f-2044-b692-28894358f5d1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-27T15:22:26.8976501Z\",\n \"endTime\": + \"2020-10-27T15:29:59.3921038Z\"\n }" headers: cache-control: - no-cache @@ -2131,7 +2307,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:33:41 GMT + - Tue, 27 Oct 2020 15:30:05 GMT expires: - '-1' pragma: @@ -2163,17 +2339,17 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 response: body: - string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed\ - \ cluster resource: cliakstest000002 in subscription: 8643025a-c059-4a48-85d0-d76f51d63a74,\ - \ resourceGroup: clitest000001.\"\n }" + string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed + cluster resource: cliakstest000001 in subscription: 0b1f6471-1bf0-4dda-aec3-cb9272f09590, + resourceGroup: clitest000001.\"\n }" headers: cache-control: - no-cache @@ -2182,7 +2358,7 @@ interactions: content-type: - application/json date: - - Sat, 12 Sep 2020 23:33:43 GMT + - Tue, 27 Oct 2020 15:30:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml new file mode 100644 index 00000000000..94aa94186fc --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml @@ -0,0 +1,709 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-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":"2020-10-27T07:35:22Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Oct 2020 07:35: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: '{"availableToOtherTenants": false, "homepage": "https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com", + "passwordCredentials": [{"startDate": "2020-10-27T07:35:24.827171Z", "endDate": + "2025-10-27T07:35:24.827171Z", "keyId": "ef0440b5-4044-49f8-ad86-21b11436cdc3", + "value": "ReplacedSPPassword123*"}], "displayName": "cliakstest000002", "identifierUris": + ["https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '457' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 + response: + body: + string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", + "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", + "objectId": "5f4caa8e-9784-466d-b546-631e5d1a6ac4", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "44e21bc3-d6ea-4420-82a6-61d20aeffd1d", + "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": + false, "displayName": "cliakstest000002", "errorUrl": null, "groupMembershipClaims": + null, "homepage": "https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com", + "identifierUris": ["https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com"], + "informationalUrls": {"termsOfService": null, "support": null, "privacy": + null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": + [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": + "directoryObjects/5f4caa8e-9784-466d-b546-631e5d1a6ac4/Microsoft.DirectoryServices.Application/logo", + "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/5f4caa8e-9784-466d-b546-631e5d1a6ac4/Microsoft.DirectoryServices.Application/mainLogo", + "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, + "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": + "Allow the application to access cliakstest000002 on behalf of the signed-in + user.", "adminConsentDisplayName": "Access cliakstest000002", "id": "126087b8-f218-4e32-9af5-8dc15dd76cca", + "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application + to access cliakstest000002 on your behalf.", "userConsentDisplayName": "Access + cliakstest000002", "value": "user_impersonation"}], "oauth2RequirePostResponse": + false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": + {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": + [{"customKeyIdentifier": null, "endDate": "2025-10-27T07:35:24.827171Z", "keyId": + "ef0440b5-4044-49f8-ad86-21b11436cdc3", "startDate": "2020-10-27T07:35:24.827171Z", + "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": + "microsoft.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": + [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": + "AzureADMyOrg", "tokenEncryptionKeyId": null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2377' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 27 Oct 2020 07:35:26 GMT + duration: + - '6729537' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/5f4caa8e-9784-466d-b546-631e5d1a6ac4/Microsoft.DirectoryServices.Application + ocp-aad-diagnostics-server-name: + - k+a8loBjbxraN1otxCzpa/lm7sS3uSMfCmXQCJ5UeOg= + ocp-aad-session-key: + - 0MWnnsSwh-RwO2uoV8YUytVDTUiyzvn7cTgpnEvEyntNk6Hz6Ah1kpcI8eCWaAlUs0WfWffUtwSxZ8Xyf68pnLVcFZq4nqxROt5X6JvJ0ZXOR8IgavurnZTE9n9ulm7N8OEcNJA5T1UA2RDqYeyuxsSwY-A3zFZ4GpMzcO0Bp1c.Q2BQFib6anyWYKdyyknYxfrCGfUAHMB5u083JRCcCcU + pragma: + - no-cache + request-id: + - 759d3d93-d848-4bbd-99d8-2708ea08bd79 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + 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 --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%2744e21bc3-d6ea-4420-82a6-61d20aeffd1d%27&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"5f4caa8e-9784-466d-b546-631e5d1a6ac4","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"44e21bc3-d6ea-4420-82a6-61d20aeffd1d","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cliakstest000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com","identifierUris":["https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/5f4caa8e-9784-466d-b546-631e5d1a6ac4/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/5f4caa8e-9784-466d-b546-631e5d1a6ac4/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cliakstest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access + cliakstest000002","id":"126087b8-f218-4e32-9af5-8dc15dd76cca","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cliakstest000002 on your behalf.","userConsentDisplayName":"Access + cliakstest000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2025-10-27T07:35:24.827171Z","keyId":"ef0440b5-4044-49f8-ad86-21b11436cdc3","startDate":"2020-10-27T07:35:24.827171Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2294' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 27 Oct 2020 07:35:26 GMT + duration: + - '633912' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - TXHS25292ScTeNNLyF6Lmk7CTfticyySnjF/t2td1Jk= + ocp-aad-session-key: + - x0_d3Hr5nfL6wGrUsKNjYJA8f2Ad32NfqMhCcte1Nd65iV493mtB0qQxdpfeYsAvcHhfEDiRy7PnnXZhbp9WxnKoqVEtr1ynfTeZOnILcVo_18lSVZ0jtPi-dKAIuPhs6I3HpIKN94OIyxmoeTU_LYX-MmsDI_ezNFu2wySEnkY.K9Lun6Wz5c4aSi1HEi5unkkbjJYtJKPkZNR-jfw8eSs + pragma: + - no-cache + request-id: + - af81f24b-bab7-4280-a962-31277736be49 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '2' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"accountEnabled": "True", "appId": "44e21bc3-d6ea-4420-82a6-61d20aeffd1d"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"48abf698-5eb7-4627-9218-9a30cd2a0995","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cliakstest000002","appId":"44e21bc3-d6ea-4420-82a6-61d20aeffd1d","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cliakstest000002","errorUrl":null,"homepage":"https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cliakstest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access + cliakstest000002","id":"126087b8-f218-4e32-9af5-8dc15dd76cca","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cliakstest000002 on your behalf.","userConsentDisplayName":"Access + cliakstest000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["44e21bc3-d6ea-4420-82a6-61d20aeffd1d","https://514eb6.cliakstest-clitestuw3zmvvwr-26fe00.westus2.cloudapp.azure.com"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1784' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 27 Oct 2020 07:35:26 GMT + duration: + - '3578213' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/48abf698-5eb7-4627-9218-9a30cd2a0995/Microsoft.DirectoryServices.ServicePrincipal + ocp-aad-diagnostics-server-name: + - grsr9Ep/kpMlfttkk1pu3cIRAdMp49TvcXwbTW3qW+A= + ocp-aad-session-key: + - kKcO6NuVKhYjLIefoU47QNglIp24IlfrE4fhMq4VxH7F1xpg4pMo0n6raY1yltldShR2mYXA4HCdiIXC_1O-Jm7JY3UKu9l27ApnkTIzyVEIoJbifcAO59b6Vfg1d-8cdaKp4-d-VD9-SuXUNoRo-8okJCQ7VHuUEDqbwrHbhHg.urtPAMefiDERzeA29PCPsNkXR9WHRuocyAKho8fcCMo + pragma: + - no-cache + request-id: + - b2d073a1-c9c7-4ebb-9a08-ab7107465cc0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestuw3zmvvwr-26fe00", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 60, "osDiskType": "Ephemeral", "osType": + "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "name": + "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiauQ12ac/8uBhdsGAE1swCUGZ1LHSEYXVulGl/bpdSRfE5P44hMcdw7rAfwgZ/XKzS330iiJcI/FOKYtkLCCdYQWB5qUZu3t+mfwIFakrsUeYb/XrT/ZNDrzd/LLYBxDvsV/2oxxBsK0xkCOUI6ZrbpNQnw8ChM1AiS9Q2YUQglF6iPCKLLnUp+X7HJH0j4RYxgOU/lDKEpH4Bef99eRezzqCPQIynSL9488EYjEbMoB+dJ36o1tcjNO4SsivATAN6xYhQP+coTVKWMwxwssfwfc7FXpS967W+ep3cntz9pAjrgzWLLsamldEFkrJ8+F2Gm8ZtQ1fKnYf8lbTI0T9PxtKblpxhcVcdeYfMUzDAGyk3yFqbtOwZsiAps9qBvYzA8SSVCOcnhTEvlenSRl3x5f08+dbp0PjwstsoLyj/BPD82JjkeiYI5nedlzX+XVXTpPoFbR2NDhwcG8ftS/kE1Ebw8wp5s6cnI2pSHYQ4epkvYhQx+AgDmXOav5tF8c= + ace@ace-vm\n"}]}}, "servicePrincipalProfile": {"clientId": "44e21bc3-d6ea-4420-82a6-61d20aeffd1d", + "secret": "777db2a21bd612915811$"}, "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"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1464' + Content-Type: + - application/json; charset=utf-8 + Ocp-Aad-Session-Key: + - 0MWnnsSwh-RwO2uoV8YUytVDTUiyzvn7cTgpnEvEyntNk6Hz6Ah1kpcI8eCWaAlUs0WfWffUtwSxZ8Xyf68pnLVcFZq4nqxROt5X6JvJ0ZXOR8IgavurnZTE9n9ulm7N8OEcNJA5T1UA2RDqYeyuxsSwY-A3zFZ4GpMzcO0Bp1c.Q2BQFib6anyWYKdyyknYxfrCGfUAHMB5u083JRCcCcU + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.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?api-version=2020-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.17.11\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestuw3zmvvwr-26fe00\",\n \"fqdn\": \"cliakstest-clitestuw3zmvvwr-26fe00-d358552d.hcp.westus2.staging.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 60,\n \"osDiskType\": \"Ephemeral\",\n \"maxPods\": 110,\n \"\ + type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.17.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\":\ + \ {},\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1604-2020.10.08\"\n }\n ],\n \"linuxProfile\": {\n \ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiauQ12ac/8uBhdsGAE1swCUGZ1LHSEYXVulGl/bpdSRfE5P44hMcdw7rAfwgZ/XKzS330iiJcI/FOKYtkLCCdYQWB5qUZu3t+mfwIFakrsUeYb/XrT/ZNDrzd/LLYBxDvsV/2oxxBsK0xkCOUI6ZrbpNQnw8ChM1AiS9Q2YUQglF6iPCKLLnUp+X7HJH0j4RYxgOU/lDKEpH4Bef99eRezzqCPQIynSL9488EYjEbMoB+dJ36o1tcjNO4SsivATAN6xYhQP+coTVKWMwxwssfwfc7FXpS967W+ep3cntz9pAjrgzWLLsamldEFkrJ8+F2Gm8ZtQ1fKnYf8lbTI0T9PxtKblpxhcVcdeYfMUzDAGyk3yFqbtOwZsiAps9qBvYzA8SSVCOcnhTEvlenSRl3x5f08+dbp0PjwstsoLyj/BPD82JjkeiYI5nedlzX+XVXTpPoFbR2NDhwcG8ftS/kE1Ebw8wp5s6cnI2pSHYQ4epkvYhQx+AgDmXOav5tF8c=\ + \ ace@ace-vm\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"44e21bc3-d6ea-4420-82a6-61d20aeffd1d\"\n },\n \ + \ \"addonProfiles\": {\n \"KubeDashboard\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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\": 10\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/2979e516-7faa-4e19-8079-c43ca0ee701a?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '2524' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:35:33 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2979e516-7faa-4e19-8079-c43ca0ee701a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16e57929-aa7f-194e-8079-c43ca0ee701a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.0774491Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:36: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2979e516-7faa-4e19-8079-c43ca0ee701a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16e57929-aa7f-194e-8079-c43ca0ee701a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.0774491Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:36: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2979e516-7faa-4e19-8079-c43ca0ee701a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16e57929-aa7f-194e-8079-c43ca0ee701a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.0774491Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:37: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2979e516-7faa-4e19-8079-c43ca0ee701a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16e57929-aa7f-194e-8079-c43ca0ee701a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.0774491Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:37: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2979e516-7faa-4e19-8079-c43ca0ee701a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16e57929-aa7f-194e-8079-c43ca0ee701a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2020-10-27T07:35:33.0774491Z\",\n \"\ + endTime\": \"2020-10-27T07:38:01.6870839Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:38: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + --node-osdisk-size + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-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.17.11\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestuw3zmvvwr-26fe00\",\n \"fqdn\": \"cliakstest-clitestuw3zmvvwr-26fe00-d358552d.hcp.westus2.staging.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 60,\n \"osDiskType\": \"Ephemeral\",\n \"maxPods\": 110,\n \"\ + type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.17.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\":\ + \ {},\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1604-2020.10.08\"\n }\n ],\n \"linuxProfile\": {\n \ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiauQ12ac/8uBhdsGAE1swCUGZ1LHSEYXVulGl/bpdSRfE5P44hMcdw7rAfwgZ/XKzS330iiJcI/FOKYtkLCCdYQWB5qUZu3t+mfwIFakrsUeYb/XrT/ZNDrzd/LLYBxDvsV/2oxxBsK0xkCOUI6ZrbpNQnw8ChM1AiS9Q2YUQglF6iPCKLLnUp+X7HJH0j4RYxgOU/lDKEpH4Bef99eRezzqCPQIynSL9488EYjEbMoB+dJ36o1tcjNO4SsivATAN6xYhQP+coTVKWMwxwssfwfc7FXpS967W+ep3cntz9pAjrgzWLLsamldEFkrJ8+F2Gm8ZtQ1fKnYf8lbTI0T9PxtKblpxhcVcdeYfMUzDAGyk3yFqbtOwZsiAps9qBvYzA8SSVCOcnhTEvlenSRl3x5f08+dbp0PjwstsoLyj/BPD82JjkeiYI5nedlzX+XVXTpPoFbR2NDhwcG8ftS/kE1Ebw8wp5s6cnI2pSHYQ4epkvYhQx+AgDmXOav5tF8c=\ + \ ace@ace-vm\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"44e21bc3-d6ea-4420-82a6-61d20aeffd1d\"\n },\n \ + \ \"addonProfiles\": {\n \"KubeDashboard\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e1d3e628-84c3-4be9-8366-d5ec37818de6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\"\ + : \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '2792' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:38: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml new file mode 100644 index 00000000000..fb676ac0952 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml @@ -0,0 +1,697 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-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":"2020-10-27T07:35:22Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 27 Oct 2020 07:35: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: '{"availableToOtherTenants": false, "homepage": "https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com", + "passwordCredentials": [{"startDate": "2020-10-27T07:35:24.834282Z", "endDate": + "2025-10-27T07:35:24.834282Z", "keyId": "8c600b36-e42b-4447-9014-5951a682c49e", + "value": "ReplacedSPPassword123*"}], "displayName": "cliakstest000002", "identifierUris": + ["https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '457' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 + response: + body: + string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", + "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", + "objectId": "0a2ce961-666f-4bc3-9daa-068a392e874e", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "8175a275-3a50-4eaa-8795-0215e1fbc06b", + "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": + false, "displayName": "cliakstest000002", "errorUrl": null, "groupMembershipClaims": + null, "homepage": "https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com", + "identifierUris": ["https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com"], + "informationalUrls": {"termsOfService": null, "support": null, "privacy": + null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": + [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": + "directoryObjects/0a2ce961-666f-4bc3-9daa-068a392e874e/Microsoft.DirectoryServices.Application/logo", + "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/0a2ce961-666f-4bc3-9daa-068a392e874e/Microsoft.DirectoryServices.Application/mainLogo", + "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, + "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": + "Allow the application to access cliakstest000002 on behalf of the signed-in + user.", "adminConsentDisplayName": "Access cliakstest000002", "id": "465e2573-a465-41a2-adb3-e2eeff8de6da", + "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application + to access cliakstest000002 on your behalf.", "userConsentDisplayName": "Access + cliakstest000002", "value": "user_impersonation"}], "oauth2RequirePostResponse": + false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": + {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": + [{"customKeyIdentifier": null, "endDate": "2025-10-27T07:35:24.834282Z", "keyId": + "8c600b36-e42b-4447-9014-5951a682c49e", "startDate": "2020-10-27T07:35:24.834282Z", + "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": + "microsoft.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": + [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": + "AzureADMyOrg", "tokenEncryptionKeyId": null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2377' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 27 Oct 2020 07:35:26 GMT + duration: + - '6268219' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/0a2ce961-666f-4bc3-9daa-068a392e874e/Microsoft.DirectoryServices.Application + ocp-aad-diagnostics-server-name: + - 0LlnUNoEO7jEDF80N6Y4mKET9OQL8ZNxFirzdR/oMr4= + ocp-aad-session-key: + - eFuf6ffQhPbgqX9jaYExYbcZF-5LkGJNTre80wEIWpWq9aPgcvAM_Tj-W68n0qNAFCze9yHgE5fF7BhFGXrc2Ys0msJ1x9jkLUj650wlwAm8n0V6cPdO7J1O2NaRc761xq77KIE451El9gnXyuM0JG0ViHw9QLwbAoHaifV3S20.YTSE5ByUGyn6S7MLG5EVO7uN2lRo84Aa9sypRw3NHFM + pragma: + - no-cache + request-id: + - 64d922ec-234d-4c59-97d7-6a38da43fbde + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + 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 --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%278175a275-3a50-4eaa-8795-0215e1fbc06b%27&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"0a2ce961-666f-4bc3-9daa-068a392e874e","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"8175a275-3a50-4eaa-8795-0215e1fbc06b","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cliakstest000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com","identifierUris":["https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/0a2ce961-666f-4bc3-9daa-068a392e874e/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/0a2ce961-666f-4bc3-9daa-068a392e874e/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cliakstest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access + cliakstest000002","id":"465e2573-a465-41a2-adb3-e2eeff8de6da","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cliakstest000002 on your behalf.","userConsentDisplayName":"Access + cliakstest000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2025-10-27T07:35:24.834282Z","keyId":"8c600b36-e42b-4447-9014-5951a682c49e","startDate":"2020-10-27T07:35:24.834282Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2294' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 27 Oct 2020 07:35:26 GMT + duration: + - '540846' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - I4v0qcnOlje1nXMrnV4NRb3YM/2Yho5JJMkIV0jxR4s= + ocp-aad-session-key: + - exYne_85oHspRBMYVSMXY8MOdyFSQzJeGt89OfTuG2GF1yWdwGSomhsRhVwZMliCoV6ZpvSy9MWq5CWRymIpJhxeBlr7uPc9mxJM08qSbgPHChMLwSP2QzEIYwQ7vmB5G7BEbMPm77p5VWuB4U8FEqJrjeAL7siwxJeFBzjcm30.kfswHTdY1wAn3BRjU_axpKgpvsdBzpMcFBqRBLMfGUE + pragma: + - no-cache + request-id: + - c1fc58f4-a7d5-4786-954c-54dba10e72de + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '2' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"accountEnabled": "True", "appId": "8175a275-3a50-4eaa-8795-0215e1fbc06b"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"26651ab4-6373-450d-94e0-e641c74da7af","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cliakstest000002","appId":"8175a275-3a50-4eaa-8795-0215e1fbc06b","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cliakstest000002","errorUrl":null,"homepage":"https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cliakstest000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access + cliakstest000002","id":"465e2573-a465-41a2-adb3-e2eeff8de6da","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cliakstest000002 on your behalf.","userConsentDisplayName":"Access + cliakstest000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["8175a275-3a50-4eaa-8795-0215e1fbc06b","https://6b3b01.cliakstest-clitesthstty76f7-26fe00.westus2.cloudapp.azure.com"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1784' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 27 Oct 2020 07:35:26 GMT + duration: + - '3660346' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/26651ab4-6373-450d-94e0-e641c74da7af/Microsoft.DirectoryServices.ServicePrincipal + ocp-aad-diagnostics-server-name: + - YF0m9VfRaICKZ7BaPBWJYnZAznG+rGxvI3UhMCQZVCo= + ocp-aad-session-key: + - paYQy3tuOHE_KD-fTaU4pNQL4ZpXTUT8d4jYuTKS8kki6pDLqqdBwVNvPYXKSwP3firAgw7CYFwDQIiTw5qHMTWvakvEAMt0PtXQHzZKTM_5Bj2U5m6waNK__p8AyKtdSieR_KU6liLUmtnlQnrkgvX0GHbbGIFowgwXLOY2hVc.k360Y_4zdZdbXy8yVF7-Y3144b6MsQ2IuzoiQv_vC0g + pragma: + - no-cache + request-id: + - b7a71349-ff61-4ec2-8047-dc1c55e97590 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitesthstty76f7-26fe00", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskType": "Managed", "osType": "Linux", "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiauQ12ac/8uBhdsGAE1swCUGZ1LHSEYXVulGl/bpdSRfE5P44hMcdw7rAfwgZ/XKzS330iiJcI/FOKYtkLCCdYQWB5qUZu3t+mfwIFakrsUeYb/XrT/ZNDrzd/LLYBxDvsV/2oxxBsK0xkCOUI6ZrbpNQnw8ChM1AiS9Q2YUQglF6iPCKLLnUp+X7HJH0j4RYxgOU/lDKEpH4Bef99eRezzqCPQIynSL9488EYjEbMoB+dJ36o1tcjNO4SsivATAN6xYhQP+coTVKWMwxwssfwfc7FXpS967W+ep3cntz9pAjrgzWLLsamldEFkrJ8+F2Gm8ZtQ1fKnYf8lbTI0T9PxtKblpxhcVcdeYfMUzDAGyk3yFqbtOwZsiAps9qBvYzA8SSVCOcnhTEvlenSRl3x5f08+dbp0PjwstsoLyj/BPD82JjkeiYI5nedlzX+XVXTpPoFbR2NDhwcG8ftS/kE1Ebw8wp5s6cnI2pSHYQ4epkvYhQx+AgDmXOav5tF8c= + ace@ace-vm\n"}]}}, "servicePrincipalProfile": {"clientId": "8175a275-3a50-4eaa-8795-0215e1fbc06b", + "secret": "c9698a1b9475cd9fc0d4$"}, "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"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1442' + Content-Type: + - application/json; charset=utf-8 + Ocp-Aad-Session-Key: + - eFuf6ffQhPbgqX9jaYExYbcZF-5LkGJNTre80wEIWpWq9aPgcvAM_Tj-W68n0qNAFCze9yHgE5fF7BhFGXrc2Ys0msJ1x9jkLUj650wlwAm8n0V6cPdO7J1O2NaRc761xq77KIE451El9gnXyuM0JG0ViHw9QLwbAoHaifV3S20.YTSE5ByUGyn6S7MLG5EVO7uN2lRo84Aa9sypRw3NHFM + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.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?api-version=2020-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.17.11\",\n \"dnsPrefix\"\ + : \"cliakstest-clitesthstty76f7-26fe00\",\n \"fqdn\": \"cliakstest-clitesthstty76f7-26fe00-b7151065.hcp.westus2.staging.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"maxPods\": 110,\n \"\ + type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.17.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\":\ + \ {},\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1604-2020.10.08\"\n }\n ],\n \"linuxProfile\": {\n \ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiauQ12ac/8uBhdsGAE1swCUGZ1LHSEYXVulGl/bpdSRfE5P44hMcdw7rAfwgZ/XKzS330iiJcI/FOKYtkLCCdYQWB5qUZu3t+mfwIFakrsUeYb/XrT/ZNDrzd/LLYBxDvsV/2oxxBsK0xkCOUI6ZrbpNQnw8ChM1AiS9Q2YUQglF6iPCKLLnUp+X7HJH0j4RYxgOU/lDKEpH4Bef99eRezzqCPQIynSL9488EYjEbMoB+dJ36o1tcjNO4SsivATAN6xYhQP+coTVKWMwxwssfwfc7FXpS967W+ep3cntz9pAjrgzWLLsamldEFkrJ8+F2Gm8ZtQ1fKnYf8lbTI0T9PxtKblpxhcVcdeYfMUzDAGyk3yFqbtOwZsiAps9qBvYzA8SSVCOcnhTEvlenSRl3x5f08+dbp0PjwstsoLyj/BPD82JjkeiYI5nedlzX+XVXTpPoFbR2NDhwcG8ftS/kE1Ebw8wp5s6cnI2pSHYQ4epkvYhQx+AgDmXOav5tF8c=\ + \ ace@ace-vm\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"8175a275-3a50-4eaa-8795-0215e1fbc06b\"\n },\n \ + \ \"addonProfiles\": {\n \"KubeDashboard\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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\": 10\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/1394a0c6-7f81-4c22-9712-b50dd021fa11?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '2523' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:35:33 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1394a0c6-7f81-4c22-9712-b50dd021fa11?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a09413-817f-224c-9712-b50dd021fa11\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.7181193Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:36: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1394a0c6-7f81-4c22-9712-b50dd021fa11?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a09413-817f-224c-9712-b50dd021fa11\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.7181193Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:36: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1394a0c6-7f81-4c22-9712-b50dd021fa11?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a09413-817f-224c-9712-b50dd021fa11\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.7181193Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:37: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1394a0c6-7f81-4c22-9712-b50dd021fa11?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a09413-817f-224c-9712-b50dd021fa11\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-10-27T07:35:33.7181193Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:37: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 --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1394a0c6-7f81-4c22-9712-b50dd021fa11?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a09413-817f-224c-9712-b50dd021fa11\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2020-10-27T07:35:33.7181193Z\",\n \"\ + endTime\": \"2020-10-27T07:37:49.4311792Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:38: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type + User-Agent: + - python/3.8.5 (Linux-5.9.0-rc6-custom-x86_64-with-glibc2.29) msrest/0.6.18 + msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-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.17.11\",\n \"dnsPrefix\"\ + : \"cliakstest-clitesthstty76f7-26fe00\",\n \"fqdn\": \"cliakstest-clitesthstty76f7-26fe00-b7151065.hcp.westus2.staging.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"maxPods\": 110,\n \"\ + type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.17.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\":\ + \ {},\n \"mode\": \"System\",\n \"osType\": \"Linux\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1604-2020.10.08\"\n }\n ],\n \"linuxProfile\": {\n \ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiauQ12ac/8uBhdsGAE1swCUGZ1LHSEYXVulGl/bpdSRfE5P44hMcdw7rAfwgZ/XKzS330iiJcI/FOKYtkLCCdYQWB5qUZu3t+mfwIFakrsUeYb/XrT/ZNDrzd/LLYBxDvsV/2oxxBsK0xkCOUI6ZrbpNQnw8ChM1AiS9Q2YUQglF6iPCKLLnUp+X7HJH0j4RYxgOU/lDKEpH4Bef99eRezzqCPQIynSL9488EYjEbMoB+dJ36o1tcjNO4SsivATAN6xYhQP+coTVKWMwxwssfwfc7FXpS967W+ep3cntz9pAjrgzWLLsamldEFkrJ8+F2Gm8ZtQ1fKnYf8lbTI0T9PxtKblpxhcVcdeYfMUzDAGyk3yFqbtOwZsiAps9qBvYzA8SSVCOcnhTEvlenSRl3x5f08+dbp0PjwstsoLyj/BPD82JjkeiYI5nedlzX+XVXTpPoFbR2NDhwcG8ftS/kE1Ebw8wp5s6cnI2pSHYQ4epkvYhQx+AgDmXOav5tF8c=\ + \ ace@ace-vm\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"8175a275-3a50-4eaa-8795-0215e1fbc06b\"\n },\n \ + \ \"addonProfiles\": {\n \"KubeDashboard\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_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_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/597836cd-0af6-4f5c-a169-41737200f60b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 10\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\"\ + : \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '2791' + content-type: + - application/json + date: + - Tue, 27 Oct 2020 07:38: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py index 312870dfec6..d77d168fbe3 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py @@ -10,7 +10,7 @@ from knack.util import CLIError from azure.cli.testsdk import ( - ResourceGroupPreparer, RoleBasedServicePrincipalPreparer, ScenarioTest, live_only) + ResourceGroupPreparer, RoleBasedServicePrincipalPreparer, VirtualNetworkPreparer, ScenarioTest, live_only) from azure_devtools.scenario_tests import AllowLargeResponse from azure.cli.testsdk.checkers import (StringContainCheck, StringContainCheckIgnoreCase) from azure.cli.command_modules.acs._format import version_to_tuple @@ -194,7 +194,7 @@ def test_aks_create_service_no_wait(self, resource_group, resource_group_locatio self.check('agentPoolProfiles[0].vmSize', 'Standard_DS2_v2'), self.check('dnsPrefix', '{dns_name_prefix}'), self.check('provisioningState', 'Succeeded'), - self.check('addonProfiles.httpapplicationrouting.enabled', True) + self.check('addonProfiles.httpApplicationRouting.enabled', True) ]) # delete @@ -248,7 +248,7 @@ def test_aks_create_scale_with_custom_nodepool_name(self, resource_group, resour self.check('agentPoolProfiles[0].name', '{nodepool_name}'), self.check('dnsPrefix', '{dns_name_prefix}'), self.check('provisioningState', 'Succeeded'), - self.check('addonProfiles', None) + self.check('addonProfiles.KubeDashboard.enabled', False) ]) # scale up @@ -462,11 +462,14 @@ def test_aks_create_default_service_with_monitoring_addon(self, resource_group, # TODO: Remove when issue #9392 is addressed. @live_only() + @AllowLargeResponse() @ResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') @RoleBasedServicePrincipalPreparer() + @VirtualNetworkPreparer() def test_aks_create_default_service_with_virtual_node_addon(self, resource_group, resource_group_location, sp_name, sp_password): # kwargs for string formatting aks_name = self.create_random_name('cliakstest', 16) + subnet_id = self.cmd('network vnet subnet show --resource-group {rg} --vnet-name {vnet} --name default').get_output_in_json()['id'] self.kwargs.update({ 'resource_group': resource_group, 'name': aks_name, @@ -475,14 +478,15 @@ def test_aks_create_default_service_with_virtual_node_addon(self, resource_group 'location': resource_group_location, 'service_principal': _process_sp_name(sp_name), 'client_secret': sp_password, - 'resource_type': 'Microsoft.ContainerService/ManagedClusters' + 'resource_type': 'Microsoft.ContainerService/ManagedClusters', + 'subnet_id': subnet_id }) # create cluster with virtual-node addon create_cmd = 'aks create --resource-group={resource_group} --name={name} --location={location} ' \ '--dns-name-prefix={dns_name_prefix} --node-count=1 --ssh-key-value={ssh_key_value} ' \ '--service-principal={service_principal} --client-secret={client_secret} --enable-addons virtual-node ' \ - '--aci-subnet-name foo --vnet-subnet-id bar' + '--aci-subnet-name foo --vnet-subnet-id "{subnet_id}"' self.cmd(create_cmd, checks=[ self.exists('fqdn'), self.exists('nodeResourceGroup'), @@ -2069,6 +2073,42 @@ def test_aks_create_with_ppg(self, resource_group, resource_group_location, sp_n self.check('proximityPlacementGroupId', '{ppg}') ]) + @AllowLargeResponse() + @ResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') + def test_aks_create_with_managed_disk(self, resource_group, resource_group_location): + aks_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name + }) + + create_cmd = 'aks create --resource-group={resource_group} --name={name} ' \ + '--generate-ssh-keys ' \ + '--vm-set-type VirtualMachineScaleSets -c 1 ' \ + '--node-osdisk-type=Managed' + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('agentPoolProfiles[0].osDiskType', 'Managed'), + ]) + + @AllowLargeResponse() + @ResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') + def test_aks_create_with_ephemeral_disk(self, resource_group, resource_group_location): + aks_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name + }) + + create_cmd = 'aks create --resource-group={resource_group} --name={name} ' \ + '--generate-ssh-keys ' \ + '--vm-set-type VirtualMachineScaleSets -c 1 ' \ + '--node-osdisk-type=Ephemeral --node-osdisk-size 60' + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('agentPoolProfiles[0].osDiskType', 'Ephemeral'), + ]) + @classmethod def generate_ssh_keys(cls): TEST_SSH_KEY_PUB = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n" # pylint: disable=line-too-long diff --git a/src/azure-cli/azure/cli/command_modules/advisor/custom.py b/src/azure-cli/azure/cli/command_modules/advisor/custom.py index f1d475a0508..418a3ea8671 100644 --- a/src/azure-cli/azure/cli/command_modules/advisor/custom.py +++ b/src/azure-cli/azure/cli/command_modules/advisor/custom.py @@ -55,12 +55,15 @@ def enable_recommendations(client, ids=None, resource_group_name=None, recommend for rec in recs: for sup in all_sups: - if sup.suppression_id in rec.suppression_ids: - result = _parse_recommendation_uri(rec.id) - client.suppressions.delete( - resource_uri=result['resource_uri'], - recommendation_id=result['recommendation_id'], - name=sup.name) + try: + if sup.suppression_id in rec.suppression_ids: + result = _parse_recommendation_uri(rec.id) + client.suppressions.delete( + resource_uri=result['resource_uri'], + recommendation_id=result['recommendation_id'], + name=sup.name) + except TypeError: # when rec.id is already suppressed, rec.suppression_ids is None + pass rec.suppression_ids = None return recs diff --git a/src/azure-cli/azure/cli/command_modules/advisor/tests/latest/test_advisor_commands.py b/src/azure-cli/azure/cli/command_modules/advisor/tests/latest/test_advisor_commands.py index 63268ba6dfb..1dc314b4ee6 100644 --- a/src/azure-cli/azure/cli/command_modules/advisor/tests/latest/test_advisor_commands.py +++ b/src/azure-cli/azure/cli/command_modules/advisor/tests/latest/test_advisor_commands.py @@ -105,7 +105,7 @@ def test_recommendations(self): self.check("[0].suppressionIds", None)]) def test_recommendations_resource_group(self): - resource_group = 'AzExpertStg' + resource_group = 'cli-live-test-rg' self.kwargs.update({ 'resource_group': resource_group }) diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py index 6932c4b720a..40a1da61d66 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py @@ -641,7 +641,6 @@ def test_azconfig_import_export(self, resource_group, location): class AppConfigAppServiceImportExportLiveScenarioTest(LiveScenarioTest): - @AllowLargeResponse() @ResourceGroupPreparer(parameter_name_for_location='location') def test_appconfig_to_appservice_import_export(self, resource_group, location): config_store_name = self.create_random_name(prefix='ImportExportTest', length=24) @@ -1985,7 +1984,6 @@ def test_azconfig_key_validation(self, resource_group, location): class AppConfigAadAuthLiveScenarioTest(LiveScenarioTest): - @AllowLargeResponse() @ResourceGroupPreparer(parameter_name_for_location='location') def test_azconfig_aad_auth(self, resource_group, location): config_store_name = self.create_random_name(prefix='AadTest', length=15) @@ -2046,7 +2044,7 @@ def test_azconfig_aad_auth(self, resource_group, location): }) # Before assigning data reader role, read operation should fail with AAD auth - with self.assertRaisesRegex(CLIError, "Operation returned an invalid status 'Forbidden'"): + with self.assertRaisesRegex(CLIError, "Operation returned an invalid status 'Unauthorized'"): self.cmd('appconfig kv show --endpoint {endpoint} --auth-mode login --key {key}') # Assign data reader role to current user diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index 1ff2a761379..bb4341e9d7b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -1669,17 +1669,17 @@ def create_app_service_plan(cmd, resource_group_name, name, is_linux, hyper_v, p if app_service_environment: if hyper_v: raise CLIError('Windows containers is not yet supported in app service environment') - ase_id = _validate_app_service_environment_id(cmd.cli_ctx, app_service_environment, resource_group_name) - ase_def = HostingEnvironmentProfile(id=ase_id) ase_list = client.app_service_environments.list() ase_found = False + ase = None for ase in ase_list: - if ase.id.lower() == ase_id.lower(): + if ase.name.lower() == app_service_environment.lower(): + ase_def = HostingEnvironmentProfile(id=ase.id) location = ase.location ase_found = True break if not ase_found: - raise CLIError("App service environment '{}' not found in subscription.".format(ase_id)) + raise CLIError("App service environment '{}' not found in subscription.".format(ase.id)) else: # Non-ASE ase_def = None if location is None: diff --git a/src/azure-cli/azure/cli/command_modules/backup/_params.py b/src/azure-cli/azure/cli/command_modules/backup/_params.py index 7960f569991..338a0062fa6 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -22,6 +22,7 @@ allowed_container_types = ['AzureIaasVM'] allowed_workload_types = ['VM', 'AzureFileShare', 'SAPHANA', 'MSSQL', 'SAPHanaDatabase', 'SQLDataBase'] +allowed_azure_workload_types = ['MSSQL', 'SAPHANA', 'SAPASE'] allowed_backup_management_types = ['AzureIaasVM', 'AzureStorage', 'AzureWorkload'] allowed_protectable_item_type = ['SQLAG', 'SQLInstance', 'SQLDatabase', 'HANAInstance', 'SAPHanaDatabase', 'SAPHanaSystem'] @@ -48,6 +49,7 @@ rp_name_type = CLIArgumentType(help='Name of the recovery point.', options_list=['--rp-name', '-r']) backup_management_type = CLIArgumentType(help=backup_management_type_help, arg_type=get_enum_type(allowed_backup_management_types), options_list=['--backup-management-type']) workload_type = CLIArgumentType(help=workload_type_help, arg_type=get_enum_type(allowed_workload_types), options_list=['--workload-type']) +azure_workload_type = CLIArgumentType(help=workload_type_help, arg_type=get_enum_type(allowed_azure_workload_types), options_list=['--workload-type']) restore_mode_type = CLIArgumentType(help=restore_mode_help, arg_type=get_enum_type(['OriginalLocation', 'AlternateLocation']), options_list=['--restore-mode']) restore_mode_workload_type = CLIArgumentType(help=restore_mode_help, arg_type=get_enum_type(['AlternateWorkloadRestore', 'OriginalWorkloadRestore', 'RestoreAsFiles']), options_list=['--restore-mode']) resolve_conflict_type = CLIArgumentType(help=resolve_conflict_help, arg_type=get_enum_type(['Overwrite', 'Skip']), options_list=['--resolve-conflict']) @@ -96,12 +98,12 @@ def load_arguments(self, _): with self.argument_context('backup container re-register') as c: c.argument('backup_management_type', backup_management_type) c.argument('container_name', container_name_type) - c.argument('workload_type', workload_type) + c.argument('workload_type', azure_workload_type) with self.argument_context('backup container register') as c: c.argument('backup_management_type', backup_management_type) c.argument('resource_id', resource_id_type) - c.argument('workload_type', workload_type) + c.argument('workload_type', azure_workload_type) # Item with self.argument_context('backup item') as c: @@ -226,7 +228,7 @@ def load_arguments(self, _): # Protectable-item with self.argument_context('backup protectable-item') as c: c.argument('vault_name', vault_name_type) - c.argument('workload_type', workload_type) + c.argument('workload_type', azure_workload_type) c.argument('container_name', container_name_type) with self.argument_context('backup protectable-item show') as c: @@ -280,7 +282,7 @@ def load_arguments(self, _): c.argument('target_item_name', options_list=['--target-item-name'], help="""Specify the target item name for the restore operation.""") c.argument('target_server_type', target_server_type) c.argument('target_server_name', options_list=['--target-server-name'], help="""Specify the parent server name of the target item.""") - c.argument('workload_type', workload_type) + c.argument('workload_type', azure_workload_type) c.argument('target_container_name', target_container_name_type) c.argument('from_full_rp_name', from_full_rp_type) c.argument('filepath', filepath_type) diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py index be8c49c4892..ad123b64390 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py @@ -25,6 +25,7 @@ protectable_containers_cf, backup_protection_containers_cf, backup_protected_items_cf import azure.cli.command_modules.backup.custom_help as cust_help import azure.cli.command_modules.backup.custom_common as common +from azure.cli.core.azclierror import InvalidArgumentValueError fabric_name = "Azure" @@ -47,7 +48,9 @@ protectable_item_type_map = {'SQLDatabase': 'SQLDataBase', 'HANADataBase': 'SAPHanaDatabase', + 'SAPHanaDatabase': 'SAPHanaDatabase', 'HANAInstance': 'SAPHanaSystem', + 'SAPHanaSystem': 'SAPHanaSystem', 'SQLInstance': 'SQLInstance', 'SQLAG': 'SQLAG'} @@ -69,7 +72,7 @@ def list_wl_policies(client, resource_group_name, vault_name, workload_type, bac Backup Management Type needs to be specified for Azure Workload. """) - workload_type = workload_type_map[workload_type] + workload_type = _check_map(workload_type, workload_type_map) filter_string = cust_help.get_filter_string({ 'backupManagementType': backup_management_type, @@ -94,7 +97,7 @@ def register_wl_container(cmd, client, vault_name, resource_group_name, workload Resource ID is not a valid one. """) - workload_type = workload_type_map[workload_type] + workload_type = _check_map(workload_type, workload_type_map) container_name = resource_id.split('/')[-1] containers = list_protectable_containers(cmd, resource_group_name, vault_name) @@ -122,7 +125,7 @@ def register_wl_container(cmd, client, vault_name, resource_group_name, workload def re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, container_name, container_type): - workload_type = workload_type_map[workload_type] + workload_type = _check_map(workload_type, workload_type_map) if not cust_help.is_native_name(container_name): raise CLIError( @@ -194,7 +197,7 @@ def resume_protection(cmd, client, resource_group_name, vault_name, item, policy def initialize_protectable_items(client, resource_group_name, vault_name, container_name, workload_type): - workload_type = workload_type_map[workload_type] + workload_type = _check_map(workload_type, workload_type_map) filter_string = cust_help.get_filter_string({ 'backupManagementType': 'AzureWorkload', @@ -204,7 +207,7 @@ def initialize_protectable_items(client, resource_group_name, vault_name, contai def create_policy(client, resource_group_name, vault_name, policy_name, policy, workload_type): - workload_type = workload_type_map[workload_type] + workload_type = _check_map(workload_type, workload_type_map) policy_object = cust_help.get_policy_from_json(client, policy) policy_object.properties.backup_management_type = "AzureWorkload" policy_object.properties.workload_type = workload_type @@ -236,8 +239,7 @@ def set_policy(client, resource_group_name, vault_name, policy, policy_name, fix def show_protectable_item(items, name, server_name, protectable_item_type): - if protectable_item_type_map.get(protectable_item_type) is not None: - protectable_item_type = protectable_item_type_map[protectable_item_type] + protectable_item_type = _check_map(protectable_item_type, protectable_item_type_map) # Name filter if cust_help.is_native_name(name): filtered_items = [item for item in items if item.name.lower() == name.lower()] @@ -255,8 +257,7 @@ def show_protectable_item(items, name, server_name, protectable_item_type): def show_protectable_instance(items, server_name, protectable_item_type): - if protectable_item_type_map.get(protectable_item_type) is not None: - protectable_item_type = protectable_item_type_map[protectable_item_type] + protectable_item_type = _check_map(protectable_item_type, protectable_item_type_map) # Server Name filter filtered_items = [item for item in items if item.properties.server_name.lower() == server_name.lower()] @@ -268,7 +269,7 @@ def show_protectable_instance(items, server_name, protectable_item_type): def list_protectable_items(client, resource_group_name, vault_name, workload_type, container_uri=None): - workload_type = workload_type_map[workload_type] + workload_type = _check_map(workload_type, workload_type_map) filter_string = cust_help.get_filter_string({ 'backupManagementType': "AzureWorkload", @@ -632,3 +633,13 @@ def _get_protected_item_instance(item_type): if item_type.lower() == "saphanadatabase": return AzureVmWorkloadSAPHanaDatabaseProtectedItem() return AzureVmWorkloadSQLDatabaseProtectedItem() + + +def _check_map(item_type, item_type_map): + if item_type_map.get(item_type) is not None: + return item_type_map[item_type] + error_text = "{} is an invalid argument.".format(item_type) + recommendation_text = "{} are the allowed values.".format(str(list(item_type_map.keys()))) + az_error = InvalidArgumentValueError(error_text) + az_error.set_recommendation(recommendation_text) + raise az_error diff --git a/src/azure-cli/azure/cli/command_modules/batch/custom.py b/src/azure-cli/azure/cli/command_modules/batch/custom.py index d3c4f002ed5..fa3a7701b40 100644 --- a/src/azure-cli/azure/cli/command_modules/batch/custom.py +++ b/src/azure-cli/azure/cli/command_modules/batch/custom.py @@ -238,7 +238,7 @@ def create_application_package(cmd, client, @transfer_doc(CertificateAddParameter) def create_certificate(client, certificate_file, thumbprint, password=None): thumbprint_algorithm = 'sha1' - certificate_format = 'pfx' if password else 'cer' + certificate_format = 'pfx' if password or certificate_file.endswith('.pfx') else 'cer' with open(certificate_file, "rb") as f: data_bytes = f.read() data = base64.b64encode(data_bytes).decode('utf-8') diff --git a/src/azure-cli/azure/cli/command_modules/billing/__init__.py b/src/azure-cli/azure/cli/command_modules/billing/__init__.py index 14c916e1784..e85065864f9 100644 --- a/src/azure-cli/azure/cli/command_modules/billing/__init__.py +++ b/src/azure-cli/azure/cli/command_modules/billing/__init__.py @@ -1,7 +1,14 @@ -# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------- # 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. +# +# Generation mode: Incremental +# -------------------------------------------------------------------------- from azure.cli.core import AzCommandsLoader @@ -20,11 +27,25 @@ def __init__(self, cli_ctx=None): def load_command_table(self, args): from azure.cli.command_modules.billing.commands import load_command_table load_command_table(self, args) + try: + from .generated.commands import load_command_table as load_command_table_generated + load_command_table_generated(self, args) + from .manual.commands import load_command_table as load_command_table_manual + load_command_table_manual(self, args) + except ImportError: + pass return self.command_table def load_arguments(self, command): from azure.cli.command_modules.billing._params import load_arguments load_arguments(self, command) + try: + from .generated._params import load_arguments as load_arguments_generated + load_arguments_generated(self, command) + from .manual._params import load_arguments as load_arguments_manual + load_arguments_manual(self, command) + except ImportError: + pass COMMAND_LOADER_CLS = BillingCommandsLoader diff --git a/src/azure-cli/azure/cli/command_modules/billing/_help.py b/src/azure-cli/azure/cli/command_modules/billing/_help.py index 2175e05b9ff..286c6b4d98a 100644 --- a/src/azure-cli/azure/cli/command_modules/billing/_help.py +++ b/src/azure-cli/azure/cli/command_modules/billing/_help.py @@ -1,10 +1,22 @@ -# 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. +# +# Generation mode: Incremental +# -------------------------------------------------------------------------- from knack.help_files import helps # pylint: disable=unused-import + +from .generated._help import helps # pylint: disable=reimported +try: + from .manual._help import helps # pylint: disable=reimported +except ImportError: + pass + # pylint: disable=line-too-long, too-many-lines helps['billing'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/billing/action.py b/src/azure-cli/azure/cli/command_modules/billing/action.py new file mode 100644 index 00000000000..010db0be208 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/action.py @@ -0,0 +1,19 @@ +# -------------------------------------------------------------------------- +# 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. +# +# Generation mode: Incremental +# -------------------------------------------------------------------------- +# pylint: disable=wildcard-import +# pylint: disable=unused-wildcard-import + +from .generated.action import * # noqa: F403 +try: + from .manual.action import * # noqa: F403 +except ImportError: + pass diff --git a/src/azure-cli/azure/cli/command_modules/billing/custom.py b/src/azure-cli/azure/cli/command_modules/billing/custom.py index d1d32d0783f..249d39301c6 100644 --- a/src/azure-cli/azure/cli/command_modules/billing/custom.py +++ b/src/azure-cli/azure/cli/command_modules/billing/custom.py @@ -1,7 +1,23 @@ -# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------- # 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. +# +# Generation mode: Incremental +# -------------------------------------------------------------------------- + +# pylint: disable=unused-wildcard-import +# pylint: disable=wildcard-import + +from .generated.custom import * # noqa: F403 +try: + from .manual.custom import * # noqa: F403 +except ImportError: + pass def cli_billing_list_invoices(client, generate_url=False): diff --git a/src/azure-cli/azure/cli/command_modules/billing/gen.zip b/src/azure-cli/azure/cli/command_modules/billing/gen.zip new file mode 100644 index 00000000000..8408cfaa5e9 Binary files /dev/null and b/src/azure-cli/azure/cli/command_modules/billing/gen.zip differ diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/__init__.py b/src/azure-cli/azure/cli/command_modules/billing/generated/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/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/azure-cli/azure/cli/command_modules/billing/generated/_client_factory.py b/src/azure-cli/azure/cli/command_modules/billing/generated/_client_factory.py new file mode 100644 index 00000000000..c3b485439cc --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/_client_factory.py @@ -0,0 +1,60 @@ +# -------------------------------------------------------------------------- +# 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_billing_cl(cli_ctx, *_): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azure.mgmt.billing import BillingManagementClient + return get_mgmt_service_client(cli_ctx, + BillingManagementClient) + + +def cf_account(cli_ctx, *_): + return cf_billing_cl(cli_ctx).billing_accounts + + +def cf_balance(cli_ctx, *_): + return cf_billing_cl(cli_ctx).available_balances + + +def cf_profile(cli_ctx, *_): + return cf_billing_cl(cli_ctx).billing_profiles + + +def cf_customer(cli_ctx, *_): + return cf_billing_cl(cli_ctx).customers + + +def cf_invoice_section(cli_ctx, *_): + return cf_billing_cl(cli_ctx).invoice_sections + + +def cf_subscription(cli_ctx, *_): + return cf_billing_cl(cli_ctx).billing_subscriptions + + +def cf_product(cli_ctx, *_): + return cf_billing_cl(cli_ctx).products + + +def cf_invoice(cli_ctx, *_): + return cf_billing_cl(cli_ctx).invoices + + +def cf_transaction(cli_ctx, *_): + return cf_billing_cl(cli_ctx).transactions + + +def cf_policy(cli_ctx, *_): + return cf_billing_cl(cli_ctx).policies + + +def cf_property(cli_ctx, *_): + return cf_billing_cl(cli_ctx).billing_property diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/_help.py b/src/azure-cli/azure/cli/command_modules/billing/generated/_help.py new file mode 100644 index 00000000000..a93345034f4 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/_help.py @@ -0,0 +1,550 @@ +# -------------------------------------------------------------------------- +# 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 knack.help_files import helps + + +helps['billing account'] = """ + type: group + short-summary: billing account +""" + +helps['billing account list'] = """ + type: command + short-summary: "Lists the billing accounts that a user has access to." + examples: + - name: BillingAccountsList + text: |- + az billing account list + - name: BillingAccountsListWithExpand + text: |- + az billing account list --expand "soldTo,billingProfiles,billingProfiles/invoiceSections" + - name: BillingAccountsListWithExpandForEnrollmentDetails + text: |- + az billing account list --expand "enrollmentDetails,departments,enrollmentAccounts" +""" + +helps['billing account show'] = """ + type: command + short-summary: "Gets a billing account by its ID." + examples: + - name: BillingAccountWithExpand + text: |- + az billing account show --expand "soldTo,billingProfiles,billingProfiles/invoiceSections" --name \ +"{billingAccountName}" + - name: BillingAccounts + text: |- + az billing account show --name "{billingAccountName}" +""" + +helps['billing account update'] = """ + type: command + short-summary: "Updates the properties of a billing account. Currently, displayName and address can be updated. \ +The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement." + parameters: + - name: --sold-to + short-summary: "The address of the individual or organization that is responsible for the billing account." + long-summary: | + Usage: --sold-to first-name=XX last-name=XX company-name=XX address-line1=XX address-line2=XX \ +address-line3=XX city=XX district=XX region=XX country=XX postal-code=XX email=XX phone-number=XX + + first-name: First name. + last-name: Last name. + company-name: Company name. + address-line1: Required. Address line 1. + address-line2: Address line 2. + address-line3: Address line 3. + city: Address city. + district: Address district. + region: Address region. + country: Required. Country code uses ISO2, 2-digit format. + postal-code: Postal code. + email: Email address. + phone-number: Phone number. + examples: + - name: UpdateBillingAccount + text: |- + az billing account update --name "{billingAccountName}" --display-name "Test Account" --sold-to \ +address-line1="Test Address 1" city="Redmond" company-name="Contoso" country="US" first-name="Test" last-name="User" \ +postal-code="12345" region="WA" +""" + +helps['billing account wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing account is met. + examples: + - name: Pause executing next line of CLI script until the billing account is successfully updated. + text: |- + az billing account wait --name "{billingAccountName}" --updated +""" + +helps['billing balance'] = """ + type: group + short-summary: billing balance +""" + +helps['billing balance show'] = """ + type: command + short-summary: "The available credit balance for a billing profile. This is the balance that can be used for pay \ +now to settle due or past due invoices. The operation is supported only for billing accounts with agreement type \ +Microsoft Customer Agreement." + examples: + - name: AvailableBalanceByBillingProfile + text: |- + az billing balance show --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +""" + +helps['billing profile'] = """ + type: group + short-summary: billing profile +""" + +helps['billing profile list'] = """ + type: command + short-summary: "Lists the billing profiles that a user has access to. The operation is supported for billing \ +accounts with agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + examples: + - name: BillingProfilesListByBillingAccount + text: |- + az billing profile list --account-name "{billingAccountName}" + - name: BillingProfilesListWithExpand + text: |- + az billing profile list --expand "invoiceSections" --account-name "{billingAccountName}" +""" + +helps['billing profile show'] = """ + type: command + short-summary: "Gets a billing profile by its ID. The operation is supported for billing accounts with agreement \ +type Microsoft Customer Agreement or Microsoft Partner Agreement." + examples: + - name: BillingProfile + text: |- + az billing profile show --account-name "{billingAccountName}" --name "{billingProfileName}" + - name: BillingProfileWithExpand + text: |- + az billing profile show --expand "invoiceSections" --account-name "{billingAccountName}" --name \ +"{billingProfileName}" +""" + +helps['billing profile create'] = """ + type: command + short-summary: "Creates or updates a billing profile. The operation is supported for billing accounts with \ +agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + parameters: + - name: --bill-to + short-summary: "Billing address." + long-summary: | + Usage: --bill-to first-name=XX last-name=XX company-name=XX address-line1=XX address-line2=XX \ +address-line3=XX city=XX district=XX region=XX country=XX postal-code=XX email=XX phone-number=XX + + first-name: First name. + last-name: Last name. + company-name: Company name. + address-line1: Required. Address line 1. + address-line2: Address line 2. + address-line3: Address line 3. + city: Address city. + district: Address district. + region: Address region. + country: Required. Country code uses ISO2, 2-digit format. + postal-code: Postal code. + email: Email address. + phone-number: Phone number. + - name: --enabled-azure-plans + short-summary: "Information about the enabled azure plans." + long-summary: | + Usage: --enabled-azure-plans sku-id=XX + + sku-id: The sku id. + + Multiple actions can be specified by using more than one --enabled-azure-plans argument. + examples: + - name: CreateBillingProfile + text: |- + az billing profile create --account-name "{billingAccountName}" --name "{billingProfileName}" --bill-to \ +address-line1="Test Address 1" city="Redmond" country="US" first-name="Test" last-name="User" postal-code="12345" \ +region="WA" --display-name "Finance" --enabled-azure-plans sku-id="0001" --enabled-azure-plans sku-id="0002" \ +--invoice-email-opt-in true --po-number "ABC12345" +""" + +helps['billing profile update'] = """ + type: command + short-summary: "Creates or updates a billing profile. The operation is supported for billing accounts with \ +agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + parameters: + - name: --bill-to + short-summary: "Billing address." + long-summary: | + Usage: --bill-to first-name=XX last-name=XX company-name=XX address-line1=XX address-line2=XX \ +address-line3=XX city=XX district=XX region=XX country=XX postal-code=XX email=XX phone-number=XX + + first-name: First name. + last-name: Last name. + company-name: Company name. + address-line1: Required. Address line 1. + address-line2: Address line 2. + address-line3: Address line 3. + city: Address city. + district: Address district. + region: Address region. + country: Required. Country code uses ISO2, 2-digit format. + postal-code: Postal code. + email: Email address. + phone-number: Phone number. + - name: --enabled-azure-plans + short-summary: "Information about the enabled azure plans." + long-summary: | + Usage: --enabled-azure-plans sku-id=XX + + sku-id: The sku id. + + Multiple actions can be specified by using more than one --enabled-azure-plans argument. +""" + +helps['billing profile wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing profile is met. + examples: + - name: Pause executing next line of CLI script until the billing profile is successfully created. + text: |- + az billing profile wait --expand "invoiceSections" --account-name "{billingAccountName}" --name \ +"{billingProfileName}" --created + - name: Pause executing next line of CLI script until the billing profile is successfully updated. + text: |- + az billing profile wait --expand "invoiceSections" --account-name "{billingAccountName}" --name \ +"{billingProfileName}" --updated +""" + +helps['billing customer'] = """ + type: group + short-summary: billing customer +""" + +helps['billing customer list'] = """ + type: command + short-summary: "Lists the customers that are billed to a billing account. The operation is supported only for \ +billing accounts with agreement type Microsoft Partner Agreement." + examples: + - name: CustomersListByBillingProfile + text: |- + az billing customer list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +""" + +helps['billing customer show'] = """ + type: command + short-summary: "Gets a customer by its ID. The operation is supported only for billing accounts with agreement \ +type Microsoft Partner Agreement." + examples: + - name: Customer + text: |- + az billing customer show --account-name "{billingAccountName}" --name "{customerName}" + - name: CustomerWithExpand + text: |- + az billing customer show --expand "enabledAzurePlans,resellers" --account-name "{billingAccountName}" \ +--name "{customerName}" +""" + +helps['billing invoice section'] = """ + type: group + short-summary: billing invoice section +""" + +helps['billing invoice section list'] = """ + type: command + short-summary: "Lists the invoice sections that a user has access to. The operation is supported only for billing \ +accounts with agreement type Microsoft Customer Agreement." + examples: + - name: InvoiceSectionsListByBillingProfile + text: |- + az billing invoice section list --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" +""" + +helps['billing invoice section show'] = """ + type: command + short-summary: "Gets an invoice section by its ID. The operation is supported only for billing accounts with \ +agreement type Microsoft Customer Agreement." + examples: + - name: InvoiceSection + text: |- + az billing invoice section show --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" +""" + +helps['billing invoice section create'] = """ + type: command + short-summary: "Creates or updates an invoice section. The operation is supported only for billing accounts with \ +agreement type Microsoft Customer Agreement." + examples: + - name: PutInvoiceSection + text: |- + az billing invoice section create --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" --display-name "invoiceSection1" --labels costCategory="Support" \ +pcCode="A123456" +""" + +helps['billing invoice section update'] = """ + type: command + short-summary: "Creates or updates an invoice section. The operation is supported only for billing accounts with \ +agreement type Microsoft Customer Agreement." +""" + +helps['billing invoice section wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing invoice section is met. + examples: + - name: Pause executing next line of CLI script until the billing invoice section is successfully created. + text: |- + az billing invoice section wait --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" --created + - name: Pause executing next line of CLI script until the billing invoice section is successfully updated. + text: |- + az billing invoice section wait --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" --updated +""" + +helps['billing subscription'] = """ + type: group + short-summary: billing subscription +""" + +helps['billing subscription list'] = """ + type: command + short-summary: "Lists the subscriptions for a billing account. The operation is supported for billing accounts \ +with agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + examples: + - name: BillingSubscriptionsListByInvoiceSection + text: |- + az billing subscription list --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --invoice-section-name "{invoiceSectionName}" +""" + +helps['billing subscription show'] = """ + type: command + short-summary: "Gets a subscription by its ID. The operation is supported for billing accounts with agreement type \ +Microsoft Customer Agreement and Microsoft Partner Agreement." + examples: + - name: BillingSubscription + text: |- + az billing subscription show --account-name "{billingAccountName}" +""" + +helps['billing subscription update'] = """ + type: command + short-summary: "Updates the properties of a billing subscription. Currently, cost center can be updated. The \ +operation is supported only for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: UpdateBillingProperty + text: |- + az billing subscription update --account-name "{billingAccountName}" --cost-center "ABC1234" +""" + +helps['billing subscription move'] = """ + type: command + short-summary: "Moves a subscription's charges to a new invoice section. The new invoice section must belong to \ +the same billing profile as the existing invoice section. This operation is supported for billing accounts with \ +agreement type Microsoft Customer Agreement." + examples: + - name: MoveBillingSubscription + text: |- + az billing subscription move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" +""" + +helps['billing subscription validate-move'] = """ + type: command + short-summary: "Validates if a subscription's charges can be moved to a new invoice section. This operation is \ +supported for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: SubscriptionMoveValidateFailure + text: |- + az billing subscription validate-move --account-name "{billingAccountName}" \ +--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{bi\ +llingProfileName}/invoiceSections/{newInvoiceSectionName}" + - name: SubscriptionMoveValidateSuccess + text: |- + az billing subscription validate-move --account-name "{billingAccountName}" \ +--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{bi\ +llingProfileName}/invoiceSections/{newInvoiceSectionName}" +""" + +helps['billing subscription wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing subscription is met. + examples: + - name: Pause executing next line of CLI script until the billing subscription is successfully created. + text: |- + az billing subscription wait --account-name "{billingAccountName}" --created +""" + +helps['billing product'] = """ + type: group + short-summary: billing product +""" + +helps['billing product list'] = """ + type: command + short-summary: "Lists the products for a billing account. These don't include products billed based on usage. The \ +operation is supported for billing accounts with agreement type Microsoft Customer Agreement or Microsoft Partner \ +Agreement." + examples: + - name: ProductsListByInvoiceSection + text: |- + az billing product list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--invoice-section-name "{invoiceSectionName}" +""" + +helps['billing product show'] = """ + type: command + short-summary: "Gets a product by ID. The operation is supported only for billing accounts with agreement type \ +Microsoft Customer Agreement." + examples: + - name: Product + text: |- + az billing product show --account-name "{billingAccountName}" --name "{productName}" +""" + +helps['billing product update'] = """ + type: command + short-summary: "Updates the properties of a Product. Currently, auto renew can be updated. The operation is \ +supported only for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: UpdateBillingProperty + text: |- + az billing product update --account-name "{billingAccountName}" --auto-renew "Off" --name \ +"{productName}" +""" + +helps['billing product move'] = """ + type: command + short-summary: "Moves a product's charges to a new invoice section. The new invoice section must belong to the \ +same billing profile as the existing invoice section. This operation is supported only for products that are purchased \ +with a recurring charge and for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: MoveProduct + text: |- + az billing product move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +""" + +helps['billing product validate-move'] = """ + type: command + short-summary: "Validates if a product's charges can be moved to a new invoice section. This operation is \ +supported only for products that are purchased with a recurring charge and for billing accounts with agreement type \ +Microsoft Customer Agreement." + examples: + - name: SubscriptionMoveValidateFailure + text: |- + az billing product validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" + - name: SubscriptionMoveValidateSuccess + text: |- + az billing product validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +""" + +helps['billing invoice'] = """ + type: group + short-summary: billing invoice +""" + +helps['billing invoice list'] = """ + type: command + short-summary: "Lists the invoices for a subscription." + examples: + - name: InvoicesListByBillingProfile + text: |- + az billing invoice list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--period-end-date "2018-06-30" --period-start-date "2018-01-01" + - name: InvoicesListByBillingProfileWithRebillDetails + text: |- + az billing invoice list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--period-end-date "2018-06-30" --period-start-date "2018-01-01" +""" + +helps['billing invoice show'] = """ + type: command + short-summary: "Gets an invoice by billing account name and ID. The operation is supported for billing accounts \ +with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement." + examples: + - name: CreditNote + text: |- + az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" + - name: Invoice + text: |- + az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" + - name: InvoiceWithRebillDetails + text: |- + az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" + - name: VoidInvoice + text: |- + az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" +""" + +helps['billing transaction'] = """ + type: group + short-summary: billing transaction +""" + +helps['billing transaction list'] = """ + type: command + short-summary: "Lists the transactions for an invoice. Transactions include purchases, refunds and Azure usage \ +charges." + examples: + - name: TransactionsListByInvoice + text: |- + az billing transaction list --account-name "{billingAccountName}" --invoice-name "{invoiceName}" +""" + +helps['billing policy'] = """ + type: group + short-summary: billing policy +""" + +helps['billing policy update'] = """ + type: command + short-summary: "Updates the policies for a billing profile. This operation is supported only for billing accounts \ +with agreement type Microsoft Customer Agreement." + examples: + - name: UpdatePolicy + text: |- + az billing policy update --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--marketplace-purchases "OnlyFreeAllowed" --reservation-purchases "NotAllowed" --view-charges "Allowed" +""" + +helps['billing property'] = """ + type: group + short-summary: billing property +""" + +helps['billing property show'] = """ + type: command + short-summary: "Get the billing properties for a subscription. This operation is not supported for billing \ +accounts with agreement type Enterprise Agreement." + examples: + - name: BillingProperty + text: |- + az billing property show +""" + +helps['billing property update'] = """ + type: command + short-summary: "Updates the billing property of a subscription. Currently, cost center can be updated. The \ +operation is supported only for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: UpdateBillingProperty + text: |- + az billing property update --cost-center "1010" +""" diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/_params.py b/src/azure-cli/azure/cli/command_modules/billing/generated/_params.py new file mode 100644 index 00000000000..59835bd68a8 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/_params.py @@ -0,0 +1,250 @@ +# -------------------------------------------------------------------------- +# 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 ( + get_three_state_flag, + get_enum_type +) +from azure.cli.core.commands.validators import validate_file_or_dict +from ..action import ( + AddSoldTo, + AddEnabledAzurePlans, + AddLabels +) + + +def load_arguments(self, _): + + with self.argument_context('billing account list') as c: + c.argument('expand', type=str, + help='May be used to expand the soldTo, invoice sections and billing profiles.') + + with self.argument_context('billing account show') as c: + c.argument('account_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing account.') + c.argument('expand', type=str, + help='May be used to expand the soldTo, invoice sections and billing profiles.') + + with self.argument_context('billing account update') as c: + c.argument('account_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing account.') + c.argument('display_name', type=str, help='The billing account name.') + c.argument('sold_to', action=AddSoldTo, nargs='*', help='The address of the individual or organization that is ' + 'responsible for the billing account.') + c.argument('departments', type=validate_file_or_dict, help='The departments associated to the enrollment. ' + 'Expected value: json-string/@json-file.') + c.argument('enrollment_accounts', type=validate_file_or_dict, help='The accounts associated to the enrollment. ' + 'Expected value: json-string/@json-file.') + c.argument('billing_profiles_value', type=validate_file_or_dict, help='The billing profiles associated with ' + 'the billing account. Expected value: json-string/@json-file.') + + with self.argument_context('billing account wait') as c: + c.argument('account_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing account.') + c.argument('expand', type=str, + help='May be used to expand the soldTo, invoice sections and billing profiles.') + + with self.argument_context('billing balance show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + + with self.argument_context('billing profile list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('expand', type=str, help='May be used to expand the invoice sections.') + + with self.argument_context('billing profile show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing profile.') + c.argument('expand', type=str, help='May be used to expand the invoice sections.') + + with self.argument_context('billing profile create') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing profile.') + c.argument('display_name', type=str, help='The name of the billing profile.') + c.argument('po_number', type=str, help='The purchase order name that will appear on the invoices generated for ' + 'the billing profile.') + c.argument('bill_to', action=AddSoldTo, nargs='*', help='Billing address.') + c.argument('invoice_email_opt_in', arg_type=get_three_state_flag(), help='Flag controlling whether the ' + 'invoices for the billing profile are sent through email.') + c.argument('enabled_azure_plans', action=AddEnabledAzurePlans, nargs='*', help='Information about the enabled ' + 'azure plans.') + c.argument('invoice_sections_value', type=validate_file_or_dict, help='The invoice sections associated to the ' + 'billing profile. Expected value: json-string/@json-file.') + + with self.argument_context('billing profile update') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing profile.') + c.argument('display_name', type=str, help='The name of the billing profile.') + c.argument('po_number', type=str, help='The purchase order name that will appear on the invoices generated for ' + 'the billing profile.') + c.argument('bill_to', action=AddSoldTo, nargs='*', help='Billing address.') + c.argument('invoice_email_opt_in', arg_type=get_three_state_flag(), help='Flag controlling whether the ' + 'invoices for the billing profile are sent through email.') + c.argument('enabled_azure_plans', action=AddEnabledAzurePlans, nargs='*', help='Information about the enabled ' + 'azure plans.') + c.argument('invoice_sections_value', type=validate_file_or_dict, help='The invoice sections associated to the ' + 'billing profile. Expected value: json-string/@json-file.') + + with self.argument_context('billing profile wait') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', options_list=['--name', '-n'], type=str, help='The ID that uniquely identifies a ' + 'billing profile.') + c.argument('expand', type=str, help='May be used to expand the invoice sections.') + + with self.argument_context('billing customer list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('search', type=str, help='Used for searching customers by their name. Any customer with name ' + 'containing the search text will be included in the response') + c.argument('filter_', options_list=['--filter'], type=str, + help='May be used to filter the list of customers.') + + with self.argument_context('billing customer show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('customer_name', options_list=['--name', '-n', '--customer-name'], type=str, help='The ID that ' + 'uniquely identifies a customer.') + c.argument('expand', type=str, help='May be used to expand enabledAzurePlans and resellers') + + with self.argument_context('billing invoice section list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + + with self.argument_context('billing invoice section show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('invoice_section_name', options_list=['--name', '-n', '--invoice-section-name'], type=str, help='' + 'The ID that uniquely identifies an invoice section.') + + with self.argument_context('billing invoice section create') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('invoice_section_name', options_list=['--name', '-n', '--invoice-section-name'], type=str, help='' + 'The ID that uniquely identifies an invoice section.') + c.argument('display_name', type=str, help='The name of the invoice section.') + c.argument('labels', action=AddLabels, nargs='*', help='Dictionary of metadata associated with the invoice ' + 'section. Expect value: KEY1=VALUE1 KEY2=VALUE2 ...') + + with self.argument_context('billing invoice section update') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('invoice_section_name', options_list=['--name', '-n', '--invoice-section-name'], type=str, help='' + 'The ID that uniquely identifies an invoice section.') + c.argument('display_name', type=str, help='The name of the invoice section.') + c.argument('labels', action=AddLabels, nargs='*', help='Dictionary of metadata associated with the invoice ' + 'section. Expect value: KEY1=VALUE1 KEY2=VALUE2 ...') + + with self.argument_context('billing invoice section wait') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('invoice_section_name', options_list=['--name', '-n', '--invoice-section-name'], type=str, help='' + 'The ID that uniquely identifies an invoice section.') + + with self.argument_context('billing subscription list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('invoice_section_name', type=str, help='The ID that uniquely identifies an invoice section.') + c.argument('customer_name', type=str, help='The ID that uniquely identifies a customer.') + + with self.argument_context('billing subscription show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + + with self.argument_context('billing subscription update') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('subscription_billing_status', arg_type=get_enum_type(['Active', 'Inactive', 'Abandoned', 'Deleted', + 'Warning']), help='The current billing ' + 'status of the subscription.') + c.argument('cost_center', type=str, help='The cost center applied to the subscription.') + c.argument('sku_id', type=str, help='The sku ID of the Azure plan for the subscription.') + + with self.argument_context('billing subscription move') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('destination_invoice_section_id', type=str, help='The destination invoice section id.') + + with self.argument_context('billing subscription validate-move') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('destination_invoice_section_id', type=str, help='The destination invoice section id.') + + with self.argument_context('billing subscription wait') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + + with self.argument_context('billing product list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('invoice_section_name', type=str, help='The ID that uniquely identifies an invoice section.') + c.argument('filter_', options_list=['--filter'], type=str, help='May be used to filter by product type. The ' + 'filter supports \'eq\', \'lt\', \'gt\', \'le\', \'ge\', and \'and\'. It does not currently support ' + '\'ne\', \'or\', or \'not\'. Tag filter is a key value pair string where key and value are ' + 'separated by a colon (:).') + c.argument('customer_name', type=str, help='The ID that uniquely identifies a customer.') + + with self.argument_context('billing product show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('product_name', options_list=['--name', '-n', '--product-name'], type=str, help='The ID that ' + 'uniquely identifies a product.') + + with self.argument_context('billing product update') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('product_name', options_list=['--name', '-n', '--product-name'], type=str, help='The ID that ' + 'uniquely identifies a product.') + c.argument('auto_renew', arg_type=get_enum_type(['Off', 'On']), help='Indicates whether auto renewal is turned ' + 'on or off for a product.') + c.argument('status', arg_type=get_enum_type(['Active', 'Inactive', 'PastDue', 'Expiring', 'Expired', + 'Disabled', 'Cancelled', 'AutoRenew']), help='The current status ' + 'of the product.') + c.argument('billing_frequency', arg_type=get_enum_type(['OneTime', 'Monthly', 'UsageBased']), help='The ' + 'frequency at which the product will be billed.') + + with self.argument_context('billing product move') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('product_name', options_list=['--name', '-n', '--product-name'], type=str, help='The ID that ' + 'uniquely identifies a product.') + c.argument('destination_invoice_section_id', type=str, help='The destination invoice section id.') + + with self.argument_context('billing product validate-move') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('product_name', options_list=['--name', '-n', '--product-name'], type=str, help='The ID that ' + 'uniquely identifies a product.') + c.argument('destination_invoice_section_id', type=str, help='The destination invoice section id.') + + with self.argument_context('billing invoice list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('period_start_date', type=str, help='The start date to fetch the invoices. The date should be ' + 'specified in MM-DD-YYYY format.') + c.argument('period_end_date', type=str, help='The end date to fetch the invoices. The date should be specified ' + 'in MM-DD-YYYY format.') + + with self.argument_context('billing invoice show') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('name', options_list=['--name', '-n'], type=str, + help='The ID that uniquely identifies an invoice.') + + with self.argument_context('billing transaction list') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('invoice_name', type=str, help='The ID that uniquely identifies an invoice.') + + with self.argument_context('billing policy update') as c: + c.argument('account_name', type=str, help='The ID that uniquely identifies a billing account.') + c.argument('profile_name', type=str, help='The ID that uniquely identifies a billing profile.') + c.argument('marketplace_purchases', arg_type=get_enum_type(['AllAllowed', 'OnlyFreeAllowed', 'NotAllowed']), + help='The policy that controls whether Azure marketplace purchases are allowed for a billing ' + 'profile.') + c.argument('reservation_purchases', arg_type=get_enum_type(['Allowed', 'NotAllowed']), help='The policy that ' + 'controls whether Azure reservation purchases are allowed for a billing profile.') + c.argument('view_charges', arg_type=get_enum_type(['Allowed', 'NotAllowed']), help='The policy that controls ' + 'whether users with Azure RBAC access to a subscription can view its charges.') + + with self.argument_context('billing property update') as c: + c.argument('cost_center', type=str, help='The cost center applied to the subscription.') diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/_validators.py b/src/azure-cli/azure/cli/command_modules/billing/generated/_validators.py new file mode 100644 index 00000000000..b33a44c1ebf --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/_validators.py @@ -0,0 +1,9 @@ +# -------------------------------------------------------------------------- +# 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. +# -------------------------------------------------------------------------- diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/action.py b/src/azure-cli/azure/cli/command_modules/billing/generated/action.py new file mode 100644 index 00000000000..99e62cb1b6b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/action.py @@ -0,0 +1,102 @@ +# -------------------------------------------------------------------------- +# 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 + +import argparse +from collections import defaultdict +from knack.util import CLIError + + +class AddSoldTo(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.sold_to = action + + def get_action(self, values, option_string): # pylint: disable=no-self-use + 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 == 'first-name': + d['first_name'] = v[0] + elif kl == 'last-name': + d['last_name'] = v[0] + elif kl == 'company-name': + d['company_name'] = v[0] + elif kl == 'address-line1': + d['address_line1'] = v[0] + elif kl == 'address-line2': + d['address_line2'] = v[0] + elif kl == 'address-line3': + d['address_line3'] = v[0] + elif kl == 'city': + d['city'] = v[0] + elif kl == 'district': + d['district'] = v[0] + elif kl == 'region': + d['region'] = v[0] + elif kl == 'country': + d['country'] = v[0] + elif kl == 'postal-code': + d['postal_code'] = v[0] + elif kl == 'email': + d['email'] = v[0] + elif kl == 'phone-number': + d['phone_number'] = v[0] + return d + + +class AddEnabledAzurePlans(argparse._AppendAction): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + super(AddEnabledAzurePlans, self).__call__(parser, namespace, action, option_string) + + def get_action(self, values, option_string): # pylint: disable=no-self-use + 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 == 'sku-id': + d['sku_id'] = v[0] + return d + + +class AddLabels(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.labels = action + + def get_action(self, values, option_string): # pylint: disable=no-self-use + 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: + v = properties[k] + d[k] = v[0] + return d diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/commands.py b/src/azure-cli/azure/cli/command_modules/billing/generated/commands.py new file mode 100644 index 00000000000..b4479f032d6 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/commands.py @@ -0,0 +1,119 @@ +# -------------------------------------------------------------------------- +# 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 + +from azure.cli.core.commands import CliCommandType + + +def load_command_table(self, _): + + from ..generated._client_factory import cf_account + billing_account = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#BillingAccountsOperations.{}', + client_factory=cf_account) + with self.command_group('billing account', billing_account, client_factory=cf_account, is_preview=True) as g: + g.custom_command('list', 'billing_account_list') + g.custom_show_command('show', 'billing_account_show') + g.custom_command('update', 'billing_account_update', supports_no_wait=True) + g.custom_wait_command('wait', 'billing_account_show') + + from ..generated._client_factory import cf_balance + billing_balance = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#AvailableBalancesOperations.{}', + client_factory=cf_balance) + with self.command_group('billing balance', billing_balance, client_factory=cf_balance, is_preview=True) as g: + g.custom_show_command('show', 'billing_balance_show') + + from ..generated._client_factory import cf_profile + billing_profile = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#BillingProfilesOperations.{}', + client_factory=cf_profile) + with self.command_group('billing profile', billing_profile, client_factory=cf_profile, is_preview=True) as g: + g.custom_command('list', 'billing_profile_list') + g.custom_show_command('show', 'billing_profile_show') + g.custom_command('create', 'billing_profile_create', supports_no_wait=True) + g.custom_command('update', 'billing_profile_update', supports_no_wait=True) + g.custom_wait_command('wait', 'billing_profile_show') + + from ..generated._client_factory import cf_customer + billing_customer = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#CustomersOperations.{}', + client_factory=cf_customer) + with self.command_group('billing customer', billing_customer, client_factory=cf_customer, is_preview=True) as g: + g.custom_command('list', 'billing_customer_list') + g.custom_show_command('show', 'billing_customer_show') + + from ..generated._client_factory import cf_invoice_section + billing_invoice_section = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#InvoiceSectionsOperations.{}', + client_factory=cf_invoice_section) + with self.command_group('billing invoice section', billing_invoice_section, + client_factory=cf_invoice_section) as g: + g.custom_command('list', 'billing_invoice_section_list') + g.custom_show_command('show', 'billing_invoice_section_show') + g.custom_command('create', 'billing_invoice_section_create', supports_no_wait=True) + g.custom_command('update', 'billing_invoice_section_update', supports_no_wait=True) + g.custom_wait_command('wait', 'billing_invoice_section_show') + + from ..generated._client_factory import cf_subscription + billing_subscription = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#BillingSubscriptionsOperations.{}', + client_factory=cf_subscription) + with self.command_group('billing subscription', billing_subscription, client_factory=cf_subscription, + is_preview=True) as g: + g.custom_command('list', 'billing_subscription_list') + g.custom_show_command('show', 'billing_subscription_show') + g.custom_command('update', 'billing_subscription_update') + g.custom_command('move', 'billing_subscription_move', supports_no_wait=True) + g.custom_command('validate-move', 'billing_subscription_validate_move') + g.custom_wait_command('wait', 'billing_subscription_show') + + from ..generated._client_factory import cf_product + billing_product = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#ProductsOperations.{}', + client_factory=cf_product) + with self.command_group('billing product', billing_product, client_factory=cf_product, is_preview=True) as g: + g.custom_command('list', 'billing_product_list') + g.custom_show_command('show', 'billing_product_show') + g.custom_command('update', 'billing_product_update') + g.custom_command('move', 'billing_product_move') + g.custom_command('validate-move', 'billing_product_validate_move') + + from ..generated._client_factory import cf_invoice + billing_invoice = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#InvoicesOperations.{}', + client_factory=cf_invoice) + with self.command_group('billing invoice', billing_invoice, client_factory=cf_invoice) as g: + g.custom_command('list', 'billing_invoice_list') + g.custom_show_command('show', 'billing_invoice_show') + + from ..generated._client_factory import cf_transaction + billing_transaction = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#TransactionsOperations.{}', + client_factory=cf_transaction) + with self.command_group('billing transaction', billing_transaction, client_factory=cf_transaction, + is_preview=True) as g: + g.custom_command('list', 'billing_transaction_list') + + from ..generated._client_factory import cf_policy + billing_policy = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#PoliciesOperations.{}', + client_factory=cf_policy) + with self.command_group('billing policy', billing_policy, client_factory=cf_policy, is_preview=True) as g: + g.custom_command('update', 'billing_policy_update') + + from ..generated._client_factory import cf_property + billing_property = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#BillingPropertyOperations.{}', + client_factory=cf_property) + with self.command_group('billing property', billing_property, client_factory=cf_property, is_preview=True) as g: + g.custom_show_command('show', 'billing_property_show') + g.custom_command('update', 'billing_property_update') diff --git a/src/azure-cli/azure/cli/command_modules/billing/generated/custom.py b/src/azure-cli/azure/cli/command_modules/billing/generated/custom.py new file mode 100644 index 00000000000..50959966a7a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/generated/custom.py @@ -0,0 +1,363 @@ +# -------------------------------------------------------------------------- +# 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 azure.cli.core.util import sdk_no_wait + + +def billing_account_list(client, + expand=None): + return client.list(expand=expand) + + +def billing_account_show(client, + account_name, + expand=None): + return client.get(billing_account_name=account_name, + expand=expand) + + +def billing_account_update(client, + account_name, + display_name=None, + sold_to=None, + departments=None, + enrollment_accounts=None, + billing_profiles_value=None, + no_wait=False): + parameters = {} + parameters['display_name'] = display_name + parameters['sold_to'] = sold_to + parameters['departments'] = departments + parameters['enrollment_accounts'] = enrollment_accounts + parameters['billing_profiles'] = {} + parameters['billing_profiles']['value'] = billing_profiles_value + return sdk_no_wait(no_wait, + client.update, + billing_account_name=account_name, + parameters=parameters) + + +def billing_balance_show(client, + account_name, + profile_name): + return client.get(billing_account_name=account_name, + billing_profile_name=profile_name) + + +def billing_profile_list(client, + account_name, + expand=None): + return client.list_by_billing_account(billing_account_name=account_name, + expand=expand) + + +def billing_profile_show(client, + account_name, + profile_name, + expand=None): + return client.get(billing_account_name=account_name, + billing_profile_name=profile_name, + expand=expand) + + +def billing_profile_create(client, + account_name, + profile_name, + display_name=None, + po_number=None, + bill_to=None, + invoice_email_opt_in=None, + enabled_azure_plans=None, + invoice_sections_value=None, + no_wait=False): + parameters = {} + parameters['display_name'] = display_name + parameters['po_number'] = po_number + parameters['bill_to'] = bill_to + parameters['invoice_email_opt_in'] = invoice_email_opt_in + parameters['enabled_azure_plans'] = enabled_azure_plans + parameters['invoice_sections'] = {} + parameters['invoice_sections']['value'] = invoice_sections_value + return sdk_no_wait(no_wait, + client.create_or_update, + billing_account_name=account_name, + billing_profile_name=profile_name, + parameters=parameters) + + +def billing_profile_update(client, + account_name, + profile_name, + display_name=None, + po_number=None, + bill_to=None, + invoice_email_opt_in=None, + enabled_azure_plans=None, + invoice_sections_value=None, + no_wait=False): + parameters = {} + parameters['display_name'] = display_name + parameters['po_number'] = po_number + parameters['bill_to'] = bill_to + parameters['invoice_email_opt_in'] = invoice_email_opt_in + parameters['enabled_azure_plans'] = enabled_azure_plans + parameters['invoice_sections'] = {} + parameters['invoice_sections']['value'] = invoice_sections_value + return sdk_no_wait(no_wait, + client.create_or_update, + billing_account_name=account_name, + billing_profile_name=profile_name, + parameters=parameters) + + +def billing_customer_list(client, + account_name, + profile_name=None, + search=None, + filter_=None): + if account_name is not None and profile_name is not None: + return client.list_by_billing_profile(billing_account_name=account_name, + billing_profile_name=profile_name, + search=search, + filter=filter_) + return client.list_by_billing_account(billing_account_name=account_name, + search=search, + filter=filter_) + + +def billing_customer_show(client, + account_name, + customer_name, + expand=None): + return client.get(billing_account_name=account_name, + customer_name=customer_name, + expand=expand) + + +def billing_invoice_section_list(client, + account_name, + profile_name): + return client.list_by_billing_profile(billing_account_name=account_name, + billing_profile_name=profile_name) + + +def billing_invoice_section_show(client, + account_name, + profile_name, + invoice_section_name): + return client.get(billing_account_name=account_name, + billing_profile_name=profile_name, + invoice_section_name=invoice_section_name) + + +def billing_invoice_section_create(client, + account_name, + profile_name, + invoice_section_name, + display_name=None, + labels=None, + no_wait=False): + return sdk_no_wait(no_wait, + client.create_or_update, + billing_account_name=account_name, + billing_profile_name=profile_name, + invoice_section_name=invoice_section_name, + display_name=display_name, + labels=labels) + + +def billing_invoice_section_update(client, + account_name, + profile_name, + invoice_section_name, + display_name=None, + labels=None, + no_wait=False): + return sdk_no_wait(no_wait, + client.create_or_update, + billing_account_name=account_name, + billing_profile_name=profile_name, + invoice_section_name=invoice_section_name, + display_name=display_name, + labels=labels) + + +# pylint: disable=no-else-return +def billing_subscription_list(client, + account_name, + profile_name=None, + invoice_section_name=None, + customer_name=None): + if account_name is not None and profile_name is not None and invoice_section_name is not None: + return client.list_by_invoice_section(billing_account_name=account_name, + billing_profile_name=profile_name, + invoice_section_name=invoice_section_name) + elif account_name is not None and customer_name is not None: + return client.list_by_customer(billing_account_name=account_name, + customer_name=customer_name) + elif account_name is not None and profile_name is not None: + return client.list_by_billing_profile(billing_account_name=account_name, + billing_profile_name=profile_name) + return client.list_by_billing_account(billing_account_name=account_name) + + +def billing_subscription_show(client, + account_name): + return client.get(billing_account_name=account_name) + + +def billing_subscription_update(client, + account_name, + subscription_billing_status=None, + cost_center=None, + sku_id=None): + parameters = {} + parameters['subscription_billing_status'] = subscription_billing_status + parameters['cost_center'] = cost_center + parameters['sku_id'] = sku_id + return client.update(billing_account_name=account_name, + parameters=parameters) + + +def billing_subscription_move(client, + account_name, + destination_invoice_section_id, + no_wait=False): + return sdk_no_wait(no_wait, + client.move, + billing_account_name=account_name, + destination_invoice_section_id=destination_invoice_section_id) + + +def billing_subscription_validate_move(client, + account_name, + destination_invoice_section_id): + return client.validate_move(billing_account_name=account_name, + destination_invoice_section_id=destination_invoice_section_id) + + +def billing_product_list(client, + account_name, + profile_name=None, + invoice_section_name=None, + filter_=None, + customer_name=None): + if account_name is not None and profile_name is not None and invoice_section_name is not None: + return client.list_by_invoice_section(billing_account_name=account_name, + billing_profile_name=profile_name, + invoice_section_name=invoice_section_name, + filter=filter_) + elif account_name is not None and profile_name is not None: + return client.list_by_billing_profile(billing_account_name=account_name, + billing_profile_name=profile_name, + filter=filter_) + elif account_name is not None and customer_name is not None: + return client.list_by_customer(billing_account_name=account_name, + customer_name=customer_name) + return client.list_by_billing_account(billing_account_name=account_name, + filter=filter_) + + +def billing_product_show(client, + account_name, + product_name): + return client.get(billing_account_name=account_name, + product_name=product_name) + + +def billing_product_update(client, + account_name, + product_name, + auto_renew=None, + status=None, + billing_frequency=None): + parameters = {} + parameters['auto_renew'] = auto_renew + parameters['status'] = status + parameters['billing_frequency'] = billing_frequency + return client.update(billing_account_name=account_name, + product_name=product_name, + parameters=parameters) + + +def billing_product_move(client, + account_name, + product_name, + destination_invoice_section_id=None): + return client.move(billing_account_name=account_name, + product_name=product_name, + destination_invoice_section_id=destination_invoice_section_id) + + +def billing_product_validate_move(client, + account_name, + product_name, + destination_invoice_section_id=None): + return client.validate_move(billing_account_name=account_name, + product_name=product_name, + destination_invoice_section_id=destination_invoice_section_id) + + +def billing_invoice_list(client, + period_start_date, + period_end_date, + account_name=None, + profile_name=None): + if account_name is not None and profile_name is not None and period_start_date is not None and period_end_date is not None: + return client.list_by_billing_profile(billing_account_name=account_name, + billing_profile_name=profile_name, + period_start_date=period_start_date, + period_end_date=period_end_date) + elif account_name is not None and period_start_date is not None and period_end_date is not None: + return client.list_by_billing_account(billing_account_name=account_name, + period_start_date=period_start_date, + period_end_date=period_end_date) + return client.list_by_billing_subscription(period_start_date=period_start_date, + period_end_date=period_end_date) + + +def billing_invoice_show(client, + account_name, + name): + return client.get(billing_account_name=account_name, + invoice_name=name) + + +def billing_transaction_list(client, + account_name, + invoice_name): + return client.list_by_invoice(billing_account_name=account_name, + invoice_name=invoice_name) + + +def billing_policy_update(client, + account_name, + profile_name, + marketplace_purchases=None, + reservation_purchases=None, + view_charges=None): + parameters = {} + parameters['marketplace_purchases'] = marketplace_purchases + parameters['reservation_purchases'] = reservation_purchases + parameters['view_charges'] = view_charges + return client.update(billing_account_name=account_name, + billing_profile_name=profile_name, + parameters=parameters) + + +def billing_property_show(client): + return client.get() + + +def billing_property_update(client, + cost_center=None): + return client.update(cost_center=cost_center) diff --git a/src/azure-cli/azure/cli/command_modules/billing/linter_exclusions.yml b/src/azure-cli/azure/cli/command_modules/billing/linter_exclusions.yml new file mode 100644 index 00000000000..50714eaa7ff --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/linter_exclusions.yml @@ -0,0 +1,50 @@ +--- +billing account update: + parameters: + billing_profiles_value: + rule_exclusions: + - option_length_too_long +billing policy update: + parameters: + marketplace_purchases: + rule_exclusions: + - option_length_too_long + reservation_purchases: + rule_exclusions: + - option_length_too_long +billing product move: + parameters: + destination_invoice_section_id: + rule_exclusions: + - option_length_too_long +billing product validate-move: + parameters: + destination_invoice_section_id: + rule_exclusions: + - option_length_too_long +billing profile create: + parameters: + invoice_sections_value: + rule_exclusions: + - option_length_too_long +billing profile update: + parameters: + invoice_sections_value: + rule_exclusions: + - option_length_too_long +billing subscription move: + parameters: + destination_invoice_section_id: + rule_exclusions: + - option_length_too_long +billing subscription update: + parameters: + subscription_billing_status: + rule_exclusions: + - option_length_too_long +billing subscription validate-move: + parameters: + destination_invoice_section_id: + rule_exclusions: + - option_length_too_long +... diff --git a/src/azure-cli/azure/cli/command_modules/billing/manual/__init__.py b/src/azure-cli/azure/cli/command_modules/billing/manual/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/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/azure-cli/azure/cli/command_modules/billing/manual/_help.py b/src/azure-cli/azure/cli/command_modules/billing/manual/_help.py new file mode 100644 index 00000000000..5416da19557 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/manual/_help.py @@ -0,0 +1,528 @@ +# -------------------------------------------------------------------------------------------- +# 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 + +from knack.help_files import helps + + +helps['billing account'] = """ + type: group + short-summary: billing account +""" + +helps['billing account list'] = """ + type: command + short-summary: "List the billing accounts that a user has access to." + examples: + - name: List billing accounts + text: |- + az billing account list + - name: List billing account with desired expanded arguments + text: |- + az billing account list --expand "soldTo,billingProfiles,billingProfiles/invoiceSections" + - name: List billing account with desired expanded arguments + text: |- + az billing account list --expand "enrollmentDetails,departments,enrollmentAccounts" +""" + +helps['billing account show'] = """ + type: command + short-summary: "Get a billing account by its ID." + examples: + - name: Show an billing acount with expanded properties + text: |- + az billing account show --expand "soldTo,billingProfiles,billingProfiles/invoiceSections" --name \ +"{billingAccountName}" + - name: Show an billing acount with default properties + text: |- + az billing account show --name "{billingAccountName}" +""" + +helps['billing account update'] = """ + type: command + short-summary: "Update the properties of a billing account. Currently, displayName and address can be updated. \ +The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement." + parameters: + - name: --sold-to + short-summary: "The address of the individual or organization that is responsible for the billing account." + long-summary: | + Usage: --sold-to first-name=XX last-name=XX company-name=XX address-line1=XX address-line2=XX \ +address-line3=XX city=XX district=XX region=XX country=XX postal-code=XX email=XX phone-number=XX + examples: + - name: Update a billing account + text: |- + az billing account update --name "{billingAccountName}" --display-name "Test Account" --sold-to \ +address-line1="Test Address 1" city="Redmond" company-name="Contoso" country="US" first-name="Test" last-name="User" \ +postal-code="12345" region="WA" +""" + +helps['billing account wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing account is met. + examples: + - name: Pause executing next line of CLI script until the billing account is successfully updated. + text: |- + az billing account wait --name "{billingAccountName}" --updated +""" + +helps['billing balance'] = """ + type: group + short-summary: billing balance +""" + +helps['billing balance show'] = """ + type: command + short-summary: "The available credit balance for a billing profile. This is the balance that can be used for pay \ +now to settle due or past due invoices. The operation is supported only for billing accounts with agreement type \ +Microsoft Customer Agreement." + examples: + - name: Show the balance of a billing profile + text: |- + az billing balance show --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +""" + +helps['billing profile'] = """ + type: group + short-summary: Manage billing profile of billing account +""" + +helps['billing profile list'] = """ + type: command + short-summary: "List the billing profiles that a user has access to. The operation is supported for billing \ +accounts with agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + examples: + - name: List billing profiles with default properties + text: |- + az billing profile list --account-name "{billingAccountName}" + - name: List billing profiles with desired expanded properties + text: |- + az billing profile list --expand "invoiceSections" --account-name "{billingAccountName}" +""" + +helps['billing profile show'] = """ + type: command + short-summary: "Get a billing profile by its ID. The operation is supported for billing accounts with agreement \ +type Microsoft Customer Agreement or Microsoft Partner Agreement." + examples: + - name: Show a billing profile with default properties + text: |- + az billing profile show --account-name "{billingAccountName}" --name "{billingProfileName}" + - name: Show a billing profile with expaned properties + text: |- + az billing profile show --expand "invoiceSections" --account-name "{billingAccountName}" --name \ +"{billingProfileName}" +""" + +helps['billing profile create'] = """ + type: command + short-summary: "Creates or updates a billing profile. The operation is supported for billing accounts with \ +agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + parameters: + - name: --bill-to + short-summary: "Billing address." + long-summary: | + Usage: --bill-to first-name=XX last-name=XX company-name=XX address-line1=XX address-line2=XX \ +address-line3=XX city=XX district=XX region=XX country=XX postal-code=XX email=XX phone-number=XX + - name: --enabled-azure-plans + short-summary: "Information about the enabled azure plans." + long-summary: | + Usage: --enabled-azure-plans sku-id=XX + sku-id: The sku id. + Multiple actions can be specified by using more than one --enabled-azure-plans argument. + examples: + - name: Create a billing profile + text: |- + az billing profile create --account-name "{billingAccountName}" --name "{billingProfileName}" --bill-to \ +address-line1="Test Address 1" city="Redmond" country="US" first-name="Test" last-name="User" postal-code="12345" \ +region="WA" --display-name "Finance" --enabled-azure-plans sku-id="0001" --enabled-azure-plans sku-id="0002" \ +--invoice-email-opt-in true --po-number "ABC12345" +""" + +helps['billing profile update'] = """ + type: command + short-summary: "Creates or updates a billing profile. The operation is supported for billing accounts with \ +agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + parameters: + - name: --bill-to + short-summary: "Billing address." + long-summary: | + Usage: --bill-to first-name=XX last-name=XX company-name=XX address-line1=XX address-line2=XX \ +address-line3=XX city=XX district=XX region=XX country=XX postal-code=XX email=XX phone-number=XX + - name: --enabled-azure-plans + short-summary: "Information about the enabled azure plans." + long-summary: | + Usage: --enabled-azure-plans sku-id=XX + sku-id: The sku id. + Multiple actions can be specified by using more than one --enabled-azure-plans argument. +""" + +helps['billing profile wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing profile is met. + examples: + - name: Pause executing next line of CLI script until the billing profile is successfully created. + text: |- + az billing profile wait --expand "invoiceSections" --account-name "{billingAccountName}" --name \ +"{billingProfileName}" --created + - name: Pause executing next line of CLI script until the billing profile is successfully updated. + text: |- + az billing profile wait --expand "invoiceSections" --account-name "{billingAccountName}" --name \ +"{billingProfileName}" --updated +""" + +helps['billing customer'] = """ + type: group + short-summary: billing customer +""" + +helps['billing customer list'] = """ + type: command + short-summary: "List the customers that are billed to a billing account. The operation is supported only for \ +billing accounts with agreement type Microsoft Partner Agreement." + examples: + - name: List customers by billing account + text: |- + az billing customer list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +""" + +helps['billing customer show'] = """ + type: command + short-summary: "Get a customer by its ID. The operation is supported only for billing accounts with agreement \ +type Microsoft Partner Agreement." + examples: + - name: Show a customer with default properties + text: |- + az billing customer show --account-name "{billingAccountName}" --name "{customerName}" + - name: Show a customer with desired expanded properties + text: |- + az billing customer show --expand "enabledAzurePlans,resellers" --account-name "{billingAccountName}" \ +--name "{customerName}" +""" + +helps['billing invoice section'] = """ + type: group + short-summary: billing invoice section +""" + +helps['billing invoice section list'] = """ + type: command + short-summary: "List the invoice sections that a user has access to. The operation is supported only for billing \ +accounts with agreement type Microsoft Customer Agreement." + examples: + - name: List invoice sections by billing account and billing profile + text: |- + az billing invoice section list --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" +""" + +helps['billing invoice section show'] = """ + type: command + short-summary: "Get an invoice section by its ID. The operation is supported only for billing accounts with \ +agreement type Microsoft Customer Agreement." + examples: + - name: Show an invoice section + text: |- + az billing invoice section show --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" +""" + +helps['billing invoice section create'] = """ + type: command + short-summary: "Creates or updates an invoice section. The operation is supported only for billing accounts with \ +agreement type Microsoft Customer Agreement." + examples: + - name: Create an invoice section + text: |- + az billing invoice section create --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" --display-name "invoiceSection1" --labels costCategory="Support" \ +pcCode="A123456" +""" + +helps['billing invoice section update'] = """ + type: command + short-summary: "Creates or updates an invoice section. The operation is supported only for billing accounts with \ +agreement type Microsoft Customer Agreement." +""" + +helps['billing invoice section wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing invoice section is met. + examples: + - name: Pause executing next line of CLI script until the billing invoice section is successfully created. + text: |- + az billing invoice section wait --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" --created + - name: Pause executing next line of CLI script until the billing invoice section is successfully updated. + text: |- + az billing invoice section wait --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --name "{invoiceSectionName}" --updated +""" + +helps['billing subscription'] = """ + type: group + short-summary: billing subscription +""" + +helps['billing subscription list'] = """ + type: command + short-summary: "List the subscriptions for a billing account. The operation is supported for billing accounts \ +with agreement type Microsoft Customer Agreement or Microsoft Partner Agreement." + examples: + - name: List subscriptions for an invoice section + text: |- + az billing subscription list --account-name "{billingAccountName}" --profile-name \ +"{billingProfileName}" --invoice-section-name "{invoiceSectionName}" +""" + +helps['billing subscription show'] = """ + type: command + short-summary: "Get a subscription by its ID. The operation is supported for billing accounts with agreement type \ +Microsoft Customer Agreement and Microsoft Partner Agreement." + examples: + - name: Show the subscription information of a billing account + text: |- + az billing subscription show --account-name "{billingAccountName}" +""" + +helps['billing subscription update'] = """ + type: command + short-summary: "Update the properties of a billing subscription. Currently, cost center can be updated. The \ +operation is supported only for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: Update properties of a billing account + text: |- + az billing subscription update --account-name "{billingAccountName}" --cost-center "ABC1234" +""" + +helps['billing subscription move'] = """ + type: command + short-summary: "Moves a subscription's charges to a new invoice section. The new invoice section must belong to \ +the same billing profile as the existing invoice section. This operation is supported for billing accounts with \ +agreement type Microsoft Customer Agreement." + examples: + - name: Move a subscription to another invoice section + text: |- + az billing subscription move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" +""" + +helps['billing subscription validate-move'] = """ + type: command + short-summary: "Validate if a subscription's charges can be moved to a new invoice section. This operation is \ +supported for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: Validate whether a move for subscription to another invoice section is valid or not + text: |- + az billing subscription validate-move --account-name "{billingAccountName}" \ +--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{bi\ +llingProfileName}/invoiceSections/{newInvoiceSectionName}" + - name: Validate whether a move for subscription to another invoice section is valid or not + text: |- + az billing subscription validate-move --account-name "{billingAccountName}" \ +--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{bi\ +llingProfileName}/invoiceSections/{newInvoiceSectionName}" +""" + +helps['billing subscription wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the billing subscription is met. + examples: + - name: Pause executing next line of CLI script until the billing subscription is successfully created. + text: |- + az billing subscription wait --account-name "{billingAccountName}" --created +""" + +helps['billing product'] = """ + type: group + short-summary: billing product +""" + +helps['billing product list'] = """ + type: command + short-summary: "List the products for a billing account. These don't include products billed based on usage. The \ +operation is supported for billing accounts with agreement type Microsoft Customer Agreement or Microsoft Partner \ +Agreement." + examples: + - name: List products by invoice name + text: |- + az billing product list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--invoice-section-name "{invoiceSectionName}" +""" + +helps['billing product show'] = """ + type: command + short-summary: "Get a product by ID. The operation is supported only for billing accounts with agreement type \ +Microsoft Customer Agreement." + examples: + - name: Shgow a product information + text: |- + az billing product show --account-name "{billingAccountName}" --name "{productName}" +""" + +helps['billing product update'] = """ + type: command + short-summary: "Update the properties of a Product. Currently, auto renew can be updated. The operation is \ +supported only for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: Update properties of a product + text: |- + az billing product update --account-name "{billingAccountName}" --auto-renew "Off" --name \ +"{productName}" +""" + +helps['billing product move'] = """ + type: command + short-summary: "Moves a product's charges to a new invoice section. The new invoice section must belong to the \ +same billing profile as the existing invoice section. This operation is supported only for products that are purchased \ +with a recurring charge and for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: Move a product's charges to a new invoice section + text: |- + az billing product move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +""" + +helps['billing product validate-move'] = """ + type: command + short-summary: "Validate if a product's charges can be moved to a new invoice section. This operation is \ +supported only for products that are purchased with a recurring charge and for billing accounts with agreement type \ +Microsoft Customer Agreement." + examples: + - name: Validate if a product's charges can be moved to a new invoice section + text: |- + az billing product validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" + - name: Validate if a product's charges can be moved to a new invoice section + text: |- + az billing product validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +""" + +helps['billing invoice'] = """ + type: group + short-summary: billing invoice +""" + +helps['billing invoice list'] = """ + type: command + short-summary: "List the invoices for a subscription." + examples: + - name: List invoices by billing account and profile name with default properties + text: |- + az billing invoice list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--period-end-date "2018-06-30" --period-start-date "2018-01-01" + - name: List invoices by billing account and profile name with expanded properties + text: |- + az billing invoice list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--period-end-date "2018-06-30" --period-start-date "2018-01-01" +""" + +helps['billing invoice show'] = """ + type: command + short-summary: "Get an invoice. The operation is supported for billing accounts \ +with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement." + examples: + - name: Show an invoice by billing account name and ID + text: |- + az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" + - name: Show an invoice by ID + text: |- + az billing invoice show --name "{invoiceName}" + - name: Show an invoice by subscription ID and invoice ID + text: |- + az billing invoice show --name "{invoiceName}" --by-subscription +""" + +helps['billing invoice download'] = """ + type: command + short-summary: "Get URL to download invoice" + examples: + - name: Get a URL to download an invoice. The operation is supported for billing accounts with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement. + text: |- + az billing invoice download --account-name "{billingAccountName}" --invoice-name "{invoiceName}" --download-token "{downloadToken}" + - name: Get a URL to download an multiple invoices documents (invoice pdf, tax receipts, credit notes) as a zip file. The operation is supported for billing accounts with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement. + text: |- + az billing invoice download --account-name "{billingAccountName}" --download-urls "{ListOfDownloadURLs}" + - name: Get a URL to download multiple invoices documents (invoice pdf, tax receipts, credit notes) as a zip file. + text: |- + az billing invoice download --download-urls "{ListOfDownloadURLs}" + - name: Get a URL to download an invoice. + text: |- + az billing invoice download --invoice-name "{invoiceName}" --download-token "{downloadToken}" +""" + +helps['billing transaction'] = """ + type: group + short-summary: billing transaction +""" + +helps['billing transaction list'] = """ + type: command + short-summary: "List the transactions for an invoice. Transactions include purchases, refunds and Azure usage \ +charges." + examples: + - name: List transactions by invoice + text: |- + az billing transaction list --account-name "{billingAccountName}" --invoice-name "{invoiceName}" +""" + +helps['billing policy'] = """ + type: group + short-summary: billing policy +""" + +helps['billing policy show'] = """ + type: command + short-summary: Show the policies for a customer or for a billing profile. This operation is supported only for billing accounts with \ +agreement type Microsoft Partner Agreement." + examples: + - name: List the policies for a customer + text: |- + az billing policy show --account-name "{billingAccountName}" --customer-name "{customerName}" + - name: List the policies for a billing profile + text: |- + az billing policy show --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +""" + +helps['billing policy update'] = """ + type: command + short-summary: "Update the policies for a billing profile. This operation is supported only for billing accounts \ +with agreement type Microsoft Customer Agreement." + examples: + - name: Update the policy for a billing profile + text: |- + az billing policy update --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--marketplace-purchases "OnlyFreeAllowed" --reservation-purchases "NotAllowed" --view-charges "Allowed" +""" + +helps['billing property'] = """ + type: group + short-summary: billing property +""" + +helps['billing property show'] = """ + type: command + short-summary: "Get the billing properties for a subscription. This operation is not supported for billing \ +accounts with agreement type Enterprise Agreement." + examples: + - name: Show the properties of a billing account + text: |- + az billing property show +""" + +helps['billing property update'] = """ + type: command + short-summary: "Update the billing property of a subscription. Currently, cost center can be updated. The \ +operation is supported only for billing accounts with agreement type Microsoft Customer Agreement." + examples: + - name: Update properties of a billing account + text: |- + az billing property update --cost-center "1010" +""" diff --git a/src/azure-cli/azure/cli/command_modules/billing/manual/_params.py b/src/azure-cli/azure/cli/command_modules/billing/manual/_params.py new file mode 100644 index 00000000000..282497ef756 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/manual/_params.py @@ -0,0 +1,60 @@ +# -------------------------------------------------------------------------------------------- +# 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=too-many-statements + +from ..action import AddSoldTo + + +def load_arguments(self, _): + + with self.argument_context("billing invoice") as c: + c.argument( + "account_name", help="The ID that uniquely identifies a billing account" + ) + c.argument("invoice_name", help="The ID that uniquely identifies an invoice") + c.argument( + "download_token", + help="The download token with document source and document ID", + ) + c.argument( + "download_urls", help="Space-separated list of download urls for individual" + ) + + with self.argument_context("billing invoice show") as c: + c.argument( + "account_name", + type=str, + help="The ID that uniquely identifies a billing account.", + ) + c.argument( + "invoice_name", + options_list=["--name", "-n", "--invoice-name"], + type=str, + help="The ID that " "uniquely identifies an invoice.", + ) + c.argument( + "by_subscription", + action="store_true", + help="When provided, it must work with --invoice-name to get an invoice by subscription ID and invoice ID", + ) + + with self.argument_context("billing policy") as c: + c.argument( + "account_name", help="The ID that uniquely identifies a billing account" + ) + c.argument( + "profile_name", + type=str, + help="The ID that uniquely identifies a billing profile.", + ) + c.argument("customer_name", help="The ID that uniquely identifies a customer") + + with self.argument_context('billing profile create') as c: + c.argument('bill_to', action=AddSoldTo, nargs='*', help='Billing address.') + + with self.argument_context('billing profile update') as c: + c.argument('bill_to', action=AddSoldTo, nargs='*', help='Billing address.') diff --git a/src/azure-cli/azure/cli/command_modules/billing/manual/_validators.py b/src/azure-cli/azure/cli/command_modules/billing/manual/_validators.py new file mode 100644 index 00000000000..1f8c9129475 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/manual/_validators.py @@ -0,0 +1,126 @@ +# -------------------------------------------------------------------------------------------- +# 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=too-many-statements + + +def billing_invoice_download_validator(namespace): + from azure.cli.core.azclierror import ( + RequiredArgumentMissingError, + MutuallyExclusiveArgumentError, + ) + + valid_combs = ( + "only --account-name, --invoice-name, --download-token / " + "--account-name, --download-urls / " + "--download-urls /" + "--invoice-name, --download-token is valid" + ) + + if namespace.account_name: + if namespace.download_token is None and namespace.invoice_name is None and namespace.download_urls is None: + raise RequiredArgumentMissingError( + "--download-urls / --download-token, --invoice-name is also required" + ) + + if namespace.download_urls is not None: + if namespace.download_token is not None or namespace.invoice_name is not None: + raise MutuallyExclusiveArgumentError(valid_combs) + if namespace.download_urls is None: + if namespace.download_token is None and namespace.invoice_name is None: + raise RequiredArgumentMissingError( + "--download-token and --invoice-name are also required" + ) + if namespace.download_token is None: + raise RequiredArgumentMissingError("--download-token is also required") + if namespace.invoice_name is None: + raise RequiredArgumentMissingError("--invoice-name is also required") + + if namespace.invoice_name is not None: + if namespace.download_urls is not None: + raise MutuallyExclusiveArgumentError(valid_combs) + if namespace.download_token is None: + raise RequiredArgumentMissingError( + "--account-name, --download-token / --download-token is also required" + ) + + if namespace.download_token is not None: + if namespace.download_urls is not None: + raise MutuallyExclusiveArgumentError(valid_combs) + if namespace.account_name is not None: + raise RequiredArgumentMissingError("--invoice-name is also required") + if namespace.invoice_name is None: + raise RequiredArgumentMissingError( + "--account-name, --invoice-name / --invoice-name is also required" + ) + + if namespace.download_urls is not None: + if namespace.download_token is not None: + raise MutuallyExclusiveArgumentError( + "--download-urls can't be used with --download-token" + ) + if namespace.invoice_name is not None: + raise MutuallyExclusiveArgumentError( + "--download-urls can't be used with --invoice-name" + ) + + +def billing_invoice_show_validator(namespace): + from azure.cli.core.azclierror import ( + RequiredArgumentMissingError, + MutuallyExclusiveArgumentError, + ) + + valid_combs = ( + "only --account-name, --name / --name / --name, --by-subscription is valid" + ) + + if namespace.account_name is not None: + if namespace.by_subscription is not None: + raise MutuallyExclusiveArgumentError(valid_combs) + if namespace.name is None: + raise RequiredArgumentMissingError("--name is also required") + + if namespace.by_subscription is not None: + if namespace.name is None: + raise RequiredArgumentMissingError("--name is also required") + + +def billing_profile_show_validator(namespace): + + from azure.cli.core.azclierror import MutuallyExclusiveArgumentError + + if namespace.profile_name is not None and namespace.customer_name is not None: + raise MutuallyExclusiveArgumentError( + "--profile-name can't be used with --customer-name" + ) + + +def billing_policy_update_validator(namespace): + from azure.cli.core.azclierror import ( + RequiredArgumentMissingError, + MutuallyExclusiveArgumentError, + ) + + if namespace.customer_name is not None: + mutual_exclusive_arguments = ( + namespace.profile_name, + namespace.marketplace_purchases, + namespace.reservation_purchases, + ) + if any(mutual_exclusive_arguments): + raise MutuallyExclusiveArgumentError( + "--customer-name can't be used with " + "--profile-name / --marketplace-purchases / --reservation-purchases" + ) + + if namespace.profile_name is None and namespace.customer_name is None: + raise RequiredArgumentMissingError( + "only " + "--account-name, --profile-name, [--marketplace-purchases, --reservation-purchases, --view-charges] / " + "--account-name, --customer-name, [--view-charges] " + "is valid" + ) diff --git a/src/azure-cli/azure/cli/command_modules/billing/manual/action.py b/src/azure-cli/azure/cli/command_modules/billing/manual/action.py new file mode 100644 index 00000000000..2fbd5270bec --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/manual/action.py @@ -0,0 +1,106 @@ +# -------------------------------------------------------------------------- +# 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 + +import argparse +from collections import defaultdict +from knack.util import CLIError + + +class AddSoldTo(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + + if hasattr(namespace, 'sold_to'): + namespace.sold_to = action + if hasattr(namespace, 'bill_to'): + namespace.bill_to = action + + def get_action(self, values, option_string): # pylint: disable=no-self-use + 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 == 'first-name': + d['first_name'] = v[0] + elif kl == 'last-name': + d['last_name'] = v[0] + elif kl == 'company-name': + d['company_name'] = v[0] + elif kl == 'address-line1': + d['address_line1'] = v[0] + elif kl == 'address-line2': + d['address_line2'] = v[0] + elif kl == 'address-line3': + d['address_line3'] = v[0] + elif kl == 'city': + d['city'] = v[0] + elif kl == 'district': + d['district'] = v[0] + elif kl == 'region': + d['region'] = v[0] + elif kl == 'country': + d['country'] = v[0] + elif kl == 'postal-code': + d['postal_code'] = v[0] + elif kl == 'email': + d['email'] = v[0] + elif kl == 'phone-number': + d['phone_number'] = v[0] + return d + + +class AddEnabledAzurePlans(argparse._AppendAction): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + super(AddEnabledAzurePlans, self).__call__(parser, namespace, action, option_string) + + def get_action(self, values, option_string): # pylint: disable=no-self-use + 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 == 'sku-id': + d['sku_id'] = v[0] + return d + + +class AddLabels(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.labels = action + + def get_action(self, values, option_string): # pylint: disable=no-self-use + 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: + v = properties[k] + d[k] = v[0] + return d diff --git a/src/azure-cli/azure/cli/command_modules/billing/manual/commands.py b/src/azure-cli/azure/cli/command_modules/billing/manual/commands.py new file mode 100644 index 00000000000..fa403d52474 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/manual/commands.py @@ -0,0 +1,56 @@ +# -------------------------------------------------------------------------------------------- +# 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=too-many-statements + +from azure.cli.core.commands import CliCommandType + +from ._validators import ( + billing_invoice_download_validator, + billing_invoice_show_validator, + billing_profile_show_validator, + billing_policy_update_validator +) + + +def load_command_table(self, _): + + from ..generated._client_factory import cf_invoice_section + + billing_invoice_section = CliCommandType( + operations_tmpl="azure.mgmt.billing.operations#InvoiceSectionsOperations.{}", + client_factory=cf_invoice_section, + ) + with self.command_group("billing invoice section", + billing_invoice_section, + client_factory=cf_invoice_section, + is_preview=True): + pass # inherit commands from generated/ and add is_preview=True + + from ..generated._client_factory import cf_invoice + + billing_invoice = CliCommandType( + operations_tmpl="azure.mgmt.billing.operations#InvoicesOperations.{}", + client_factory=cf_invoice, + ) + with self.command_group("billing invoice", billing_invoice, client_factory=cf_invoice) as g: + g.custom_command( + "download", + "billing_invoice_download", + validator=billing_invoice_download_validator, + is_preview=True + ) + g.custom_show_command( + "show", "billing_invoice_show", validator=billing_invoice_show_validator + ) + + from ..generated._client_factory import cf_policy + billing_policy = CliCommandType( + operations_tmpl='azure.mgmt.billing.operations#PoliciesOperations.{}', + client_factory=cf_policy) + with self.command_group('billing policy', billing_policy, client_factory=cf_policy, is_preview=True) as g: + g.custom_show_command('show', 'billing_policy_show', validator=billing_profile_show_validator) + g.custom_command('update', 'billing_policy_update', validator=billing_policy_update_validator) diff --git a/src/azure-cli/azure/cli/command_modules/billing/manual/custom.py b/src/azure-cli/azure/cli/command_modules/billing/manual/custom.py new file mode 100644 index 00000000000..99feb557284 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/manual/custom.py @@ -0,0 +1,97 @@ +# -------------------------------------------------------------------------------------------- +# 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=too-many-statements + + +def billing_invoice_download(client, + account_name=None, + invoice_name=None, + download_token=None, + download_urls=None): + """ + Get URL to download invoice + + :param account_name: The ID that uniquely identifies a billing account. + :param invoice_name: The ID that uniquely identifies an invoice. + :param download_token: The download token with document source and document ID. + :param download_urls: An array of download urls for individual. + """ + if account_name and invoice_name and download_token: + return client.download_invoice(account_name, invoice_name, download_token) + if account_name and download_urls: + return client.download_multiple_modern_invoice(account_name, download_urls) + + if download_urls: + return client.download_multiple_billing_subscription_invoice(download_urls) + + if invoice_name and download_token: + return client.download_billing_subscription_invoice( + invoice_name, download_token + ) + + from azure.cli.core.azclierror import CLIInternalError + + raise CLIInternalError( + "Uncaught argument combinations for Azure CLI to handle. Please submit an issue" + ) + + +def billing_invoice_show(client, name, account_name=None, by_subscription=None): + + if account_name is not None and name is not None: + return client.get(billing_account_name=account_name, invoice_name=name) + + if name is not None and not by_subscription: + return client.get_by_id(name) + + if by_subscription and name: + return client.get_by_subscription_and_invoice_id(name) + + from azure.cli.core.azclierror import CLIInternalError + raise CLIInternalError( + "Uncaught argument combinations for Azure CLI to handle. Please submit an issue" + ) + + +def billing_policy_show(client, account_name, profile_name=None, customer_name=None): + if profile_name: + return client.get_by_billing_profile(account_name, profile_name) + + if customer_name: + return client.get_by_customer(account_name, customer_name) + + from azure.cli.core.azclierror import CLIInternalError + return CLIInternalError( + "Uncaught argument combinations for Azure CLI to handle. Please submit an issue" + ) + + +def billing_policy_update(client, + account_name, + profile_name=None, + customer_name=None, + marketplace_purchases=None, + reservation_purchases=None, + view_charges=None): + if customer_name is None: + parameters = {} + parameters['marketplace_purchases'] = marketplace_purchases + parameters['reservation_purchases'] = reservation_purchases + parameters['view_charges'] = view_charges + return client.update(billing_account_name=account_name, + billing_profile_name=profile_name, + parameters=parameters) + + if account_name is not None and customer_name is not None: + return client.update_customer(billing_account_name=account_name, + customer_name=customer_name, + view_charges=view_charges) + + from azure.cli.core.azclierror import CLIInternalError + return CLIInternalError( + "Uncaught argument combinations for Azure CLI to handle. Please submit an issue" + ) diff --git a/src/azure-cli/azure/cli/command_modules/billing/report.md b/src/azure-cli/azure/cli/command_modules/billing/report.md new file mode 100644 index 00000000000..247cf7fba9e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/report.md @@ -0,0 +1,673 @@ +# Azure CLI Module Creation Report + +## EXTENSION +|CLI Extension|Command Groups| +|---------|------------| +|az billing|[groups](#CommandGroups) + +## GROUPS +### Command groups in `az billing` extension +|CLI Command Group|Group Swagger name|Commands| +|---------|------------|--------| +|az billing account|BillingAccounts|[commands](#CommandsInBillingAccounts)| +|az billing balance|AvailableBalances|[commands](#CommandsInAvailableBalances)| +|az billing profile|BillingProfiles|[commands](#CommandsInBillingProfiles)| +|az billing customer|Customers|[commands](#CommandsInCustomers)| +|az billing invoice section|InvoiceSections|[commands](#CommandsInInvoiceSections)| +|az billing subscription|BillingSubscriptions|[commands](#CommandsInBillingSubscriptions)| +|az billing product|Products|[commands](#CommandsInProducts)| +|az billing invoice|Invoices|[commands](#CommandsInInvoices)| +|az billing transaction|Transactions|[commands](#CommandsInTransactions)| +|az billing policy|Policies|[commands](#CommandsInPolicies)| +|az billing property|BillingProperty|[commands](#CommandsInBillingProperty)| + +## COMMANDS +### Commands in `az billing account` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing account list](#BillingAccountsList)|List|[Parameters](#ParametersBillingAccountsList)|[Example](#ExamplesBillingAccountsList)| +|[az billing account show](#BillingAccountsGet)|Get|[Parameters](#ParametersBillingAccountsGet)|[Example](#ExamplesBillingAccountsGet)| +|[az billing account update](#BillingAccountsUpdate)|Update|[Parameters](#ParametersBillingAccountsUpdate)|[Example](#ExamplesBillingAccountsUpdate)| + +### Commands in `az billing balance` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing balance show](#AvailableBalancesGet)|Get|[Parameters](#ParametersAvailableBalancesGet)|[Example](#ExamplesAvailableBalancesGet)| + +### Commands in `az billing customer` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing customer list](#CustomersListByBillingProfile)|ListByBillingProfile|[Parameters](#ParametersCustomersListByBillingProfile)|[Example](#ExamplesCustomersListByBillingProfile)| +|[az billing customer list](#CustomersListByBillingAccount)|ListByBillingAccount|[Parameters](#ParametersCustomersListByBillingAccount)|[Example](#ExamplesCustomersListByBillingAccount)| +|[az billing customer show](#CustomersGet)|Get|[Parameters](#ParametersCustomersGet)|[Example](#ExamplesCustomersGet)| + +### Commands in `az billing invoice` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing invoice list](#InvoicesListByBillingProfile)|ListByBillingProfile|[Parameters](#ParametersInvoicesListByBillingProfile)|[Example](#ExamplesInvoicesListByBillingProfile)| +|[az billing invoice list](#InvoicesListByBillingAccount)|ListByBillingAccount|[Parameters](#ParametersInvoicesListByBillingAccount)|[Example](#ExamplesInvoicesListByBillingAccount)| +|[az billing invoice list](#InvoicesListByBillingSubscription)|ListByBillingSubscription|[Parameters](#ParametersInvoicesListByBillingSubscription)|[Example](#ExamplesInvoicesListByBillingSubscription)| +|[az billing invoice show](#InvoicesGet)|Get|[Parameters](#ParametersInvoicesGet)|[Example](#ExamplesInvoicesGet)| + +### Commands in `az billing invoice section` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing invoice section list](#InvoiceSectionsListByBillingProfile)|ListByBillingProfile|[Parameters](#ParametersInvoiceSectionsListByBillingProfile)|[Example](#ExamplesInvoiceSectionsListByBillingProfile)| +|[az billing invoice section show](#InvoiceSectionsGet)|Get|[Parameters](#ParametersInvoiceSectionsGet)|[Example](#ExamplesInvoiceSectionsGet)| +|[az billing invoice section create](#InvoiceSectionsCreateOrUpdate#Create)|CreateOrUpdate#Create|[Parameters](#ParametersInvoiceSectionsCreateOrUpdate#Create)|[Example](#ExamplesInvoiceSectionsCreateOrUpdate#Create)| +|[az billing invoice section update](#InvoiceSectionsCreateOrUpdate#Update)|CreateOrUpdate#Update|[Parameters](#ParametersInvoiceSectionsCreateOrUpdate#Update)|Not Found| + +### Commands in `az billing policy` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing policy update](#PoliciesUpdate)|Update|[Parameters](#ParametersPoliciesUpdate)|[Example](#ExamplesPoliciesUpdate)| + +### Commands in `az billing product` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing product list](#ProductsListByInvoiceSection)|ListByInvoiceSection|[Parameters](#ParametersProductsListByInvoiceSection)|[Example](#ExamplesProductsListByInvoiceSection)| +|[az billing product list](#ProductsListByBillingProfile)|ListByBillingProfile|[Parameters](#ParametersProductsListByBillingProfile)|[Example](#ExamplesProductsListByBillingProfile)| +|[az billing product list](#ProductsListByCustomer)|ListByCustomer|[Parameters](#ParametersProductsListByCustomer)|[Example](#ExamplesProductsListByCustomer)| +|[az billing product list](#ProductsListByBillingAccount)|ListByBillingAccount|[Parameters](#ParametersProductsListByBillingAccount)|[Example](#ExamplesProductsListByBillingAccount)| +|[az billing product show](#ProductsGet)|Get|[Parameters](#ParametersProductsGet)|[Example](#ExamplesProductsGet)| +|[az billing product update](#ProductsUpdate)|Update|[Parameters](#ParametersProductsUpdate)|[Example](#ExamplesProductsUpdate)| +|[az billing product move](#ProductsMove)|Move|[Parameters](#ParametersProductsMove)|[Example](#ExamplesProductsMove)| +|[az billing product validate-move](#ProductsValidateMove)|ValidateMove|[Parameters](#ParametersProductsValidateMove)|[Example](#ExamplesProductsValidateMove)| + +### Commands in `az billing profile` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing profile list](#BillingProfilesListByBillingAccount)|ListByBillingAccount|[Parameters](#ParametersBillingProfilesListByBillingAccount)|[Example](#ExamplesBillingProfilesListByBillingAccount)| +|[az billing profile show](#BillingProfilesGet)|Get|[Parameters](#ParametersBillingProfilesGet)|[Example](#ExamplesBillingProfilesGet)| +|[az billing profile create](#BillingProfilesCreateOrUpdate#Create)|CreateOrUpdate#Create|[Parameters](#ParametersBillingProfilesCreateOrUpdate#Create)|[Example](#ExamplesBillingProfilesCreateOrUpdate#Create)| +|[az billing profile update](#BillingProfilesCreateOrUpdate#Update)|CreateOrUpdate#Update|[Parameters](#ParametersBillingProfilesCreateOrUpdate#Update)|Not Found| + +### Commands in `az billing property` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing property show](#BillingPropertyGet)|Get|[Parameters](#ParametersBillingPropertyGet)|[Example](#ExamplesBillingPropertyGet)| +|[az billing property update](#BillingPropertyUpdate)|Update|[Parameters](#ParametersBillingPropertyUpdate)|[Example](#ExamplesBillingPropertyUpdate)| + +### Commands in `az billing subscription` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing subscription list](#BillingSubscriptionsListByInvoiceSection)|ListByInvoiceSection|[Parameters](#ParametersBillingSubscriptionsListByInvoiceSection)|[Example](#ExamplesBillingSubscriptionsListByInvoiceSection)| +|[az billing subscription list](#BillingSubscriptionsListByCustomer)|ListByCustomer|[Parameters](#ParametersBillingSubscriptionsListByCustomer)|[Example](#ExamplesBillingSubscriptionsListByCustomer)| +|[az billing subscription list](#BillingSubscriptionsListByBillingProfile)|ListByBillingProfile|[Parameters](#ParametersBillingSubscriptionsListByBillingProfile)|[Example](#ExamplesBillingSubscriptionsListByBillingProfile)| +|[az billing subscription list](#BillingSubscriptionsListByBillingAccount)|ListByBillingAccount|[Parameters](#ParametersBillingSubscriptionsListByBillingAccount)|[Example](#ExamplesBillingSubscriptionsListByBillingAccount)| +|[az billing subscription show](#BillingSubscriptionsGet)|Get|[Parameters](#ParametersBillingSubscriptionsGet)|[Example](#ExamplesBillingSubscriptionsGet)| +|[az billing subscription update](#BillingSubscriptionsUpdate)|Update|[Parameters](#ParametersBillingSubscriptionsUpdate)|[Example](#ExamplesBillingSubscriptionsUpdate)| +|[az billing subscription move](#BillingSubscriptionsMove)|Move|[Parameters](#ParametersBillingSubscriptionsMove)|[Example](#ExamplesBillingSubscriptionsMove)| +|[az billing subscription validate-move](#BillingSubscriptionsValidateMove)|ValidateMove|[Parameters](#ParametersBillingSubscriptionsValidateMove)|[Example](#ExamplesBillingSubscriptionsValidateMove)| + +### Commands in `az billing transaction` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az billing transaction list](#TransactionsListByInvoice)|ListByInvoice|[Parameters](#ParametersTransactionsListByInvoice)|[Example](#ExamplesTransactionsListByInvoice)| + + +## COMMAND DETAILS + +### group `az billing account` +#### Command `az billing account list` + +##### Example +``` +az billing account list +``` +##### Example +``` +az billing account list --expand "soldTo,billingProfiles,billingProfiles/invoiceSections" +``` +##### Example +``` +az billing account list --expand "enrollmentDetails,departments,enrollmentAccounts" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--expand**|string|May be used to expand the soldTo, invoice sections and billing profiles.|expand|$expand| + +#### Command `az billing account show` + +##### Example +``` +az billing account show --expand "soldTo,billingProfiles,billingProfiles/invoiceSections" --name \ +"{billingAccountName}" +``` +##### Example +``` +az billing account show --name "{billingAccountName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--expand**|string|May be used to expand the soldTo, invoice sections and billing profiles.|expand|$expand| + +#### Command `az billing account update` + +##### Example +``` +az billing account update --name "{billingAccountName}" --display-name "Test Account" --sold-to address-line1="Test \ +Address 1" city="Redmond" company-name="Contoso" country="US" first-name="Test" last-name="User" postal-code="12345" \ +region="WA" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--display-name**|string|The billing account name.|display_name|displayName| +|**--sold-to**|object|The address of the individual or organization that is responsible for the billing account.|sold_to|soldTo| +|**--departments**|array|The departments associated to the enrollment.|departments|departments| +|**--enrollment-accounts**|array|The accounts associated to the enrollment.|enrollment_accounts|enrollmentAccounts| +|**--billing-profiles-value**|array|The billing profiles associated with the billing account.|value|value| + +### group `az billing balance` +#### Command `az billing balance show` + +##### Example +``` +az billing balance show --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| + +### group `az billing customer` +#### Command `az billing customer list` + +##### Example +``` +az billing customer list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--search**|string|Used for searching customers by their name. Any customer with name containing the search text will be included in the response|search|$search| +|**--filter**|string|May be used to filter the list of customers.|filter|$filter| + +#### Command `az billing customer list` + +##### Example +``` +az billing customer list --account-name "{billingAccountName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing customer show` + +##### Example +``` +az billing customer show --account-name "{billingAccountName}" --name "{customerName}" +``` +##### Example +``` +az billing customer show --expand "enabledAzurePlans,resellers" --account-name "{billingAccountName}" --name \ +"{customerName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--customer-name**|string|The ID that uniquely identifies a customer.|customer_name|customerName| +|**--expand**|string|May be used to expand enabledAzurePlans and resellers|expand|$expand| + +### group `az billing invoice` +#### Command `az billing invoice list` + +##### Example +``` +az billing invoice list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" --period-end-date \ +"2018-06-30" --period-start-date "2018-01-01" +``` +##### Example +``` +az billing invoice list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" --period-end-date \ +"2018-06-30" --period-start-date "2018-01-01" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--period-start-date**|string|The start date to fetch the invoices. The date should be specified in MM-DD-YYYY format.|period_start_date|periodStartDate| +|**--period-end-date**|string|The end date to fetch the invoices. The date should be specified in MM-DD-YYYY format.|period_end_date|periodEndDate| + +#### Command `az billing invoice list` + +##### Example +``` +az billing invoice list --account-name "{billingAccountName}" --period-end-date "2018-06-30" --period-start-date \ +"2018-01-01" +``` +##### Example +``` +az billing invoice list --account-name "{billingAccountName}" --period-end-date "2018-06-30" --period-start-date \ +"2018-01-01" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing invoice list` + +##### Example +``` +az billing invoice list --period-end-date "2018-06-30" --period-start-date "2018-01-01" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing invoice show` + +##### Example +``` +az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" +``` +##### Example +``` +az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" +``` +##### Example +``` +az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" +``` +##### Example +``` +az billing invoice show --account-name "{billingAccountName}" --name "{invoiceName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--name**|string|The ID that uniquely identifies an invoice.|name|invoiceName| + +### group `az billing invoice section` +#### Command `az billing invoice section list` + +##### Example +``` +az billing invoice section list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| + +#### Command `az billing invoice section show` + +##### Example +``` +az billing invoice section show --account-name "{billingAccountName}" --profile-name "{billingProfileName}" --name \ +"{invoiceSectionName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--invoice-section-name**|string|The ID that uniquely identifies an invoice section.|invoice_section_name|invoiceSectionName| + +#### Command `az billing invoice section create` + +##### Example +``` +az billing invoice section create --account-name "{billingAccountName}" --profile-name "{billingProfileName}" --name \ +"{invoiceSectionName}" --display-name "invoiceSection1" --labels costCategory="Support" pcCode="A123456" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--invoice-section-name**|string|The ID that uniquely identifies an invoice section.|invoice_section_name|invoiceSectionName| +|**--display-name**|string|The name of the invoice section.|display_name|displayName| +|**--labels**|dictionary|Dictionary of metadata associated with the invoice section.|labels|labels| + +#### Command `az billing invoice section update` + +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--invoice-section-name**|string|The ID that uniquely identifies an invoice section.|invoice_section_name|invoiceSectionName| +|**--display-name**|string|The name of the invoice section.|display_name|displayName| +|**--labels**|dictionary|Dictionary of metadata associated with the invoice section.|labels|labels| + +### group `az billing policy` +#### Command `az billing policy update` + +##### Example +``` +az billing policy update --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--marketplace-purchases "OnlyFreeAllowed" --reservation-purchases "NotAllowed" --view-charges "Allowed" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--marketplace-purchases**|choice|The policy that controls whether Azure marketplace purchases are allowed for a billing profile.|marketplace_purchases|marketplacePurchases| +|**--reservation-purchases**|choice|The policy that controls whether Azure reservation purchases are allowed for a billing profile.|reservation_purchases|reservationPurchases| +|**--view-charges**|choice|The policy that controls whether users with Azure RBAC access to a subscription can view its charges.|view_charges|viewCharges| + +### group `az billing product` +#### Command `az billing product list` + +##### Example +``` +az billing product list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--invoice-section-name "{invoiceSectionName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--invoice-section-name**|string|The ID that uniquely identifies an invoice section.|invoice_section_name|invoiceSectionName| +|**--filter**|string|May be used to filter by product type. The filter supports 'eq', 'lt', 'gt', 'le', 'ge', and 'and'. It does not currently support 'ne', 'or', or 'not'. Tag filter is a key value pair string where key and value are separated by a colon (:).|filter|$filter| + +#### Command `az billing product list` + +##### Example +``` +az billing product list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing product list` + +##### Example +``` +az billing product list --account-name "{billingAccountName}" --customer-name "{customerName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--customer-name**|string|The ID that uniquely identifies a customer.|customer_name|customerName| + +#### Command `az billing product list` + +##### Example +``` +az billing product list --account-name "{billingAccountName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing product show` + +##### Example +``` +az billing product show --account-name "{billingAccountName}" --name "{productName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--product-name**|string|The ID that uniquely identifies a product.|product_name|productName| + +#### Command `az billing product update` + +##### Example +``` +az billing product update --account-name "{billingAccountName}" --auto-renew "Off" --name "{productName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--product-name**|string|The ID that uniquely identifies a product.|product_name|productName| +|**--auto-renew**|choice|Indicates whether auto renewal is turned on or off for a product.|auto_renew|autoRenew| +|**--status**|choice|The current status of the product.|status|status| +|**--billing-frequency**|choice|The frequency at which the product will be billed.|billing_frequency|billingFrequency| + +#### Command `az billing product move` + +##### Example +``` +az billing product move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--product-name**|string|The ID that uniquely identifies a product.|product_name|productName| +|**--destination-invoice-section-id**|string|The destination invoice section id.|destination_invoice_section_id|destinationInvoiceSectionId| + +#### Command `az billing product validate-move` + +##### Example +``` +az billing product validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +``` +##### Example +``` +az billing product validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" --name "{productName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--product-name**|string|The ID that uniquely identifies a product.|product_name|productName| +|**--destination-invoice-section-id**|string|The destination invoice section id.|destination_invoice_section_id|destinationInvoiceSectionId| + +### group `az billing profile` +#### Command `az billing profile list` + +##### Example +``` +az billing profile list --account-name "{billingAccountName}" +``` +##### Example +``` +az billing profile list --expand "invoiceSections" --account-name "{billingAccountName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--expand**|string|May be used to expand the invoice sections.|expand|$expand| + +#### Command `az billing profile show` + +##### Example +``` +az billing profile show --account-name "{billingAccountName}" --name "{billingProfileName}" +``` +##### Example +``` +az billing profile show --expand "invoiceSections" --account-name "{billingAccountName}" --name "{billingProfileName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--expand**|string|May be used to expand the invoice sections.|expand|$expand| + +#### Command `az billing profile create` + +##### Example +``` +az billing profile create --account-name "{billingAccountName}" --name "{billingProfileName}" --bill-to \ +address-line1="Test Address 1" city="Redmond" country="US" first-name="Test" last-name="User" postal-code="12345" \ +region="WA" --display-name "Finance" --enabled-azure-plans sku-id="0001" --enabled-azure-plans sku-id="0002" \ +--invoice-email-opt-in true --po-number "ABC12345" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--display-name**|string|The name of the billing profile.|display_name|displayName| +|**--po-number**|string|The purchase order name that will appear on the invoices generated for the billing profile.|po_number|poNumber| +|**--bill-to**|object|Billing address.|bill_to|billTo| +|**--invoice-email-opt-in**|boolean|Flag controlling whether the invoices for the billing profile are sent through email.|invoice_email_opt_in|invoiceEmailOptIn| +|**--enabled-azure-plans**|array|Information about the enabled azure plans.|enabled_azure_plans|enabledAzurePlans| +|**--invoice-sections-value**|array|The invoice sections associated to the billing profile.|value|value| + +#### Command `az billing profile update` + +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--display-name**|string|The name of the billing profile.|display_name|displayName| +|**--po-number**|string|The purchase order name that will appear on the invoices generated for the billing profile.|po_number|poNumber| +|**--bill-to**|object|Billing address.|bill_to|billTo| +|**--invoice-email-opt-in**|boolean|Flag controlling whether the invoices for the billing profile are sent through email.|invoice_email_opt_in|invoiceEmailOptIn| +|**--enabled-azure-plans**|array|Information about the enabled azure plans.|enabled_azure_plans|enabledAzurePlans| +|**--invoice-sections-value**|array|The invoice sections associated to the billing profile.|value|value| + +### group `az billing property` +#### Command `az billing property show` + +##### Example +``` +az billing property show +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing property update` + +##### Example +``` +az billing property update --cost-center "1010" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--cost-center**|string|The cost center applied to the subscription.|cost_center|costCenter| + +### group `az billing subscription` +#### Command `az billing subscription list` + +##### Example +``` +az billing subscription list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" \ +--invoice-section-name "{invoiceSectionName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--profile-name**|string|The ID that uniquely identifies a billing profile.|profile_name|billingProfileName| +|**--invoice-section-name**|string|The ID that uniquely identifies an invoice section.|invoice_section_name|invoiceSectionName| + +#### Command `az billing subscription list` + +##### Example +``` +az billing subscription list --account-name "{billingAccountName}" --customer-name "{customerName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--customer-name**|string|The ID that uniquely identifies a customer.|customer_name|customerName| + +#### Command `az billing subscription list` + +##### Example +``` +az billing subscription list --account-name "{billingAccountName}" --profile-name "{billingProfileName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing subscription list` + +##### Example +``` +az billing subscription list --account-name "{billingAccountName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +#### Command `az billing subscription show` + +##### Example +``` +az billing subscription show --account-name "{billingAccountName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| + +#### Command `az billing subscription update` + +##### Example +``` +az billing subscription update --account-name "{billingAccountName}" --cost-center "ABC1234" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--subscription-billing-status**|choice|The current billing status of the subscription.|subscription_billing_status|subscriptionBillingStatus| +|**--cost-center**|string|The cost center applied to the subscription.|cost_center|costCenter| +|**--sku-id**|string|The sku ID of the Azure plan for the subscription.|sku_id|skuId| + +#### Command `az billing subscription move` + +##### Example +``` +az billing subscription move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--destination-invoice-section-id**|string|The destination invoice section id.|destination_invoice_section_id|destinationInvoiceSectionId| + +#### Command `az billing subscription validate-move` + +##### Example +``` +az billing subscription validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" +``` +##### Example +``` +az billing subscription validate-move --account-name "{billingAccountName}" --destination-invoice-section-id \ +"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections\ +/{newInvoiceSectionName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--destination-invoice-section-id**|string|The destination invoice section id.|destination_invoice_section_id|destinationInvoiceSectionId| + +### group `az billing transaction` +#### Command `az billing transaction list` + +##### Example +``` +az billing transaction list --account-name "{billingAccountName}" --invoice-name "{invoiceName}" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--account-name**|string|The ID that uniquely identifies a billing account.|account_name|billingAccountName| +|**--invoice-name**|string|The ID that uniquely identifies an invoice.|invoice_name|invoiceName| diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/__init__.py b/src/azure-cli/azure/cli/command_modules/billing/tests/__init__.py index 34913fb394d..50e0627daff 100644 --- a/src/azure-cli/azure/cli/command_modules/billing/tests/__init__.py +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/__init__.py @@ -1,4 +1,114 @@ -# -------------------------------------------------------------------------------------------- +# 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 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) + module_path = __path__[0] + 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) + 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: + 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/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_biiling_profile_list_and_show.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_biiling_profile_list_and_show.yaml new file mode 100644 index 00000000000..2efd78da3a6 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_biiling_profile_list_and_show.yaml @@ -0,0 +1,243 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile list + Connection: + - keep-alive + ParameterSetName: + - --account-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles?api-version=2020-05-01 + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '5048' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:56:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile list + Connection: + - keep-alive + ParameterSetName: + - --expand --account-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles?api-version=2020-05-01&$expand=invoiceSections + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB/invoiceSections/WBEJ-VB7F-PJA-AJ4D-SGB","name":"WBEJ-VB7F-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer CH","state":"Active","systemId":"WBEJ-VB7F-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/ABAW-O3L6-PJA-AJ4D-SGB","name":"ABAW-O3L6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer SE","state":"Active","systemId":"ABAW-O3L6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/H5IB-BHIR-PJA-AJ4D-SGB","name":"H5IB-BHIR-PJA-AJ4D-SGB","properties":{"displayName":"Legacy + Azure Customer SE","state":"Active","systemId":"H5IB-BHIR-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB/invoiceSections/ENXS-EGM6-PJA-AJ4D-SGB","name":"ENXS-EGM6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer NO","state":"Active","systemId":"ENXS-EGM6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AWTC-47IN-PJA-AJ4D-SGB","name":"AWTC-47IN-PJA-AJ4D-SGB","properties":{"displayName":"testtest0101","state":"Active","systemId":"AWTC-47IN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RBH7-XPSH-PJA-AJ4D-SGB","name":"RBH7-XPSH-PJA-AJ4D-SGB","properties":{"displayName":"teststest122324","state":"Active","systemId":"RBH7-XPSH-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/KYWA-5WJ7-PJA-AJ4D-SGB","name":"KYWA-5WJ7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MA07291019UK","state":"Active","systemId":"KYWA-5WJ7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RY62-DIZS-PJA-AJ4D-SGB","name":"RY62-DIZS-PJA-AJ4D-SGB","properties":{"displayName":"Contoso + Services","state":"Active","systemId":"RY62-DIZS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BLUZ-V3GL-PJA-AJ4D-SGB","name":"BLUZ-V3GL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer UK","state":"Active","systemId":"BLUZ-V3GL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/F474-EL7H-PJA-AJ4D-SGB","name":"F474-EL7H-PJA-AJ4D-SGB","properties":{"displayName":"Test_customer01","state":"Active","systemId":"F474-EL7H-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/B34F-ACCN-PJA-AJ4D-SGB","name":"B34F-ACCN-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_4","state":"Active","systemId":"B34F-ACCN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AINZ-DNC7-PJA-AJ4D-SGB","name":"AINZ-DNC7-PJA-AJ4D-SGB","properties":{"displayName":"Test_Customer01","state":"Active","systemId":"AINZ-DNC7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/NERI-WTQF-PJA-AJ4D-SGB","name":"NERI-WTQF-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure UK Test","state":"Active","systemId":"NERI-WTQF-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/7O3G-UTOY-PJA-AJ4D-SGB","name":"7O3G-UTOY-PJA-AJ4D-SGB","properties":{"displayName":"0801TestUKModernCustomer","state":"Active","systemId":"7O3G-UTOY-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DNJP-OGTO-PJA-AJ4D-SGB","name":"DNJP-OGTO-PJA-AJ4D-SGB","properties":{"displayName":"Mcua + Chetan Customer UK","state":"Active","systemId":"DNJP-OGTO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/GN4V-RECN-PJA-AJ4D-SGB","name":"GN4V-RECN-PJA-AJ4D-SGB","properties":{"displayName":"0729TestUKCustomer","state":"Active","systemId":"GN4V-RECN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/I2UC-PZII-PJA-AJ4D-SGB","name":"I2UC-PZII-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"I2UC-PZII-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DOXA-JXJP-PJA-AJ4D-SGB","name":"DOXA-JXJP-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"DOXA-JXJP-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/C557-2IV7-PJA-AJ4D-SGB","name":"C557-2IV7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MaMa07312019","state":"Active","systemId":"C557-2IV7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BZ2O-HO6J-PJA-AJ4D-SGB","name":"BZ2O-HO6J-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_7","state":"Active","systemId":"BZ2O-HO6J-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/QC3L-CPVE-PJA-AJ4D-SGB","name":"QC3L-CPVE-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"QC3L-CPVE-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/OLU2-3NVJ-PJA-AJ4D-SGB","name":"OLU2-3NVJ-PJA-AJ4D-SGB","properties":{"displayName":"Woodgrove","state":"Active","systemId":"OLU2-3NVJ-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/O3IB-JN5N-PJA-AJ4D-SGB","name":"O3IB-JN5N-PJA-AJ4D-SGB","properties":{"displayName":"ContosotTestTest","state":"Active","systemId":"O3IB-JN5N-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/SEUB-Z2BL-PJA-AJ4D-SGB","name":"SEUB-Z2BL-PJA-AJ4D-SGB","properties":{"displayName":"0730TestModernCustomer","state":"Active","systemId":"SEUB-Z2BL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/XGIN-H535-PJA-AJ4D-SGB","name":"XGIN-H535-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MAMA07302019","state":"Active","systemId":"XGIN-H535-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '18408' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:56:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile show + Connection: + - keep-alive + ParameterSetName: + - --account-name --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '841' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:56:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile show + Connection: + - keep-alive + ParameterSetName: + - --expand --account-name --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB?api-version=2020-05-01&$expand=invoiceSections + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '1284' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:56:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing.yaml new file mode 100644 index 00000000000..07b5f871906 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing.yaml @@ -0,0 +1,279 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account show + Connection: + - keep-alive + ParameterSetName: + - --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/%7BbillingAccountName%7D?api-version=2020-05-01 + response: + body: + string: '{"code":"NotFound","message":"The resource or one of its dependencies + could not be found."}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '91' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:44:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account list + Connection: + - keep-alive + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts?api-version=2020-05-01 + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false},"displayName":"PLAMUATT2NetNew","hasReadAccess":true},"type":"Microsoft.Billing/billingAccounts"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:44:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account list + Connection: + - keep-alive + ParameterSetName: + - --expand + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts?api-version=2020-05-01&$expand=soldTo%2CbillingProfiles%2CbillingProfiles%2FinvoiceSections + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB/invoiceSections/WBEJ-VB7F-PJA-AJ4D-SGB","name":"WBEJ-VB7F-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer CH","state":"Active","systemId":"WBEJ-VB7F-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/ABAW-O3L6-PJA-AJ4D-SGB","name":"ABAW-O3L6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer SE","state":"Active","systemId":"ABAW-O3L6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/H5IB-BHIR-PJA-AJ4D-SGB","name":"H5IB-BHIR-PJA-AJ4D-SGB","properties":{"displayName":"Legacy + Azure Customer SE","state":"Active","systemId":"H5IB-BHIR-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB/invoiceSections/ENXS-EGM6-PJA-AJ4D-SGB","name":"ENXS-EGM6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer NO","state":"Active","systemId":"ENXS-EGM6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-123","name":"7S7S-YONO-PJA-AJ4D-123","properties":{"displayName":"invoiceSection1","labels":{"costCategory":"Support","pcCode":"A123456"},"state":"Active","systemId":"XBAI-A6MU-PJA-2YMV-SGB","tags":{"costCategory":"Support","pcCode":"A123456"}},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AWTC-47IN-PJA-AJ4D-SGB","name":"AWTC-47IN-PJA-AJ4D-SGB","properties":{"displayName":"testtest0101","state":"Active","systemId":"AWTC-47IN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RBH7-XPSH-PJA-AJ4D-SGB","name":"RBH7-XPSH-PJA-AJ4D-SGB","properties":{"displayName":"teststest122324","state":"Active","systemId":"RBH7-XPSH-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/KYWA-5WJ7-PJA-AJ4D-SGB","name":"KYWA-5WJ7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MA07291019UK","state":"Active","systemId":"KYWA-5WJ7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RY62-DIZS-PJA-AJ4D-SGB","name":"RY62-DIZS-PJA-AJ4D-SGB","properties":{"displayName":"Contoso + Services","state":"Active","systemId":"RY62-DIZS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BLUZ-V3GL-PJA-AJ4D-SGB","name":"BLUZ-V3GL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer UK","state":"Active","systemId":"BLUZ-V3GL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/F474-EL7H-PJA-AJ4D-SGB","name":"F474-EL7H-PJA-AJ4D-SGB","properties":{"displayName":"Test_customer01","state":"Active","systemId":"F474-EL7H-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/B34F-ACCN-PJA-AJ4D-SGB","name":"B34F-ACCN-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_4","state":"Active","systemId":"B34F-ACCN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AINZ-DNC7-PJA-AJ4D-SGB","name":"AINZ-DNC7-PJA-AJ4D-SGB","properties":{"displayName":"Test_Customer01","state":"Active","systemId":"AINZ-DNC7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/NERI-WTQF-PJA-AJ4D-SGB","name":"NERI-WTQF-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure UK Test","state":"Active","systemId":"NERI-WTQF-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/7O3G-UTOY-PJA-AJ4D-SGB","name":"7O3G-UTOY-PJA-AJ4D-SGB","properties":{"displayName":"0801TestUKModernCustomer","state":"Active","systemId":"7O3G-UTOY-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DNJP-OGTO-PJA-AJ4D-SGB","name":"DNJP-OGTO-PJA-AJ4D-SGB","properties":{"displayName":"Mcua + Chetan Customer UK","state":"Active","systemId":"DNJP-OGTO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/GN4V-RECN-PJA-AJ4D-SGB","name":"GN4V-RECN-PJA-AJ4D-SGB","properties":{"displayName":"0729TestUKCustomer","state":"Active","systemId":"GN4V-RECN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/I2UC-PZII-PJA-AJ4D-SGB","name":"I2UC-PZII-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"I2UC-PZII-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DOXA-JXJP-PJA-AJ4D-SGB","name":"DOXA-JXJP-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"DOXA-JXJP-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/C557-2IV7-PJA-AJ4D-SGB","name":"C557-2IV7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MaMa07312019","state":"Active","systemId":"C557-2IV7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BZ2O-HO6J-PJA-AJ4D-SGB","name":"BZ2O-HO6J-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_7","state":"Active","systemId":"BZ2O-HO6J-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/QC3L-CPVE-PJA-AJ4D-SGB","name":"QC3L-CPVE-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"QC3L-CPVE-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/OLU2-3NVJ-PJA-AJ4D-SGB","name":"OLU2-3NVJ-PJA-AJ4D-SGB","properties":{"displayName":"Woodgrove","state":"Active","systemId":"OLU2-3NVJ-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/O3IB-JN5N-PJA-AJ4D-SGB","name":"O3IB-JN5N-PJA-AJ4D-SGB","properties":{"displayName":"ContosotTestTest","state":"Active","systemId":"O3IB-JN5N-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/SEUB-Z2BL-PJA-AJ4D-SGB","name":"SEUB-Z2BL-PJA-AJ4D-SGB","properties":{"displayName":"0730TestModernCustomer","state":"Active","systemId":"SEUB-Z2BL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/XGIN-H535-PJA-AJ4D-SGB","name":"XGIN-H535-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MAMA07302019","state":"Active","systemId":"XGIN-H535-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]},"displayName":"PLAMUATT2NetNew","hasReadAccess":true,"soldTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"}},"type":"Microsoft.Billing/billingAccounts"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '19619' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:44:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account list + Connection: + - keep-alive + ParameterSetName: + - --expand + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts?api-version=2020-05-01&$expand=enrollmentDetails%2Cdepartments%2CenrollmentAccounts + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false},"displayName":"PLAMUATT2NetNew","hasReadAccess":true},"type":"Microsoft.Billing/billingAccounts"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:44:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account show + Connection: + - keep-alive + ParameterSetName: + - --expand --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/%7BbillingAccountName%7D?api-version=2020-05-01&$expand=soldTo%2CbillingProfiles%2CbillingProfiles%2FinvoiceSections + response: + body: + string: '{"code":"NotFound","message":"The resource or one of its dependencies + could not be found."}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '91' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:44:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_account_list_and_show.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_account_list_and_show.yaml new file mode 100644 index 00000000000..0bb8c310c5b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_account_list_and_show.yaml @@ -0,0 +1,305 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account list + Connection: + - keep-alive + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts?api-version=2020-05-01 + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false},"displayName":"PLAMUATT2NetNew","hasReadAccess":true},"type":"Microsoft.Billing/billingAccounts"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:11:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account list + Connection: + - keep-alive + ParameterSetName: + - --expand + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts?api-version=2020-05-01&$expand=soldTo%2CbillingProfiles%2CbillingProfiles%2FinvoiceSections + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB/invoiceSections/WBEJ-VB7F-PJA-AJ4D-SGB","name":"WBEJ-VB7F-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer CH","state":"Active","systemId":"WBEJ-VB7F-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/ABAW-O3L6-PJA-AJ4D-SGB","name":"ABAW-O3L6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer SE","state":"Active","systemId":"ABAW-O3L6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/H5IB-BHIR-PJA-AJ4D-SGB","name":"H5IB-BHIR-PJA-AJ4D-SGB","properties":{"displayName":"Legacy + Azure Customer SE","state":"Active","systemId":"H5IB-BHIR-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB/invoiceSections/ENXS-EGM6-PJA-AJ4D-SGB","name":"ENXS-EGM6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer NO","state":"Active","systemId":"ENXS-EGM6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AWTC-47IN-PJA-AJ4D-SGB","name":"AWTC-47IN-PJA-AJ4D-SGB","properties":{"displayName":"testtest0101","state":"Active","systemId":"AWTC-47IN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RBH7-XPSH-PJA-AJ4D-SGB","name":"RBH7-XPSH-PJA-AJ4D-SGB","properties":{"displayName":"teststest122324","state":"Active","systemId":"RBH7-XPSH-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/KYWA-5WJ7-PJA-AJ4D-SGB","name":"KYWA-5WJ7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MA07291019UK","state":"Active","systemId":"KYWA-5WJ7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RY62-DIZS-PJA-AJ4D-SGB","name":"RY62-DIZS-PJA-AJ4D-SGB","properties":{"displayName":"Contoso + Services","state":"Active","systemId":"RY62-DIZS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BLUZ-V3GL-PJA-AJ4D-SGB","name":"BLUZ-V3GL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer UK","state":"Active","systemId":"BLUZ-V3GL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/F474-EL7H-PJA-AJ4D-SGB","name":"F474-EL7H-PJA-AJ4D-SGB","properties":{"displayName":"Test_customer01","state":"Active","systemId":"F474-EL7H-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/B34F-ACCN-PJA-AJ4D-SGB","name":"B34F-ACCN-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_4","state":"Active","systemId":"B34F-ACCN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AINZ-DNC7-PJA-AJ4D-SGB","name":"AINZ-DNC7-PJA-AJ4D-SGB","properties":{"displayName":"Test_Customer01","state":"Active","systemId":"AINZ-DNC7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/NERI-WTQF-PJA-AJ4D-SGB","name":"NERI-WTQF-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure UK Test","state":"Active","systemId":"NERI-WTQF-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/7O3G-UTOY-PJA-AJ4D-SGB","name":"7O3G-UTOY-PJA-AJ4D-SGB","properties":{"displayName":"0801TestUKModernCustomer","state":"Active","systemId":"7O3G-UTOY-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DNJP-OGTO-PJA-AJ4D-SGB","name":"DNJP-OGTO-PJA-AJ4D-SGB","properties":{"displayName":"Mcua + Chetan Customer UK","state":"Active","systemId":"DNJP-OGTO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/GN4V-RECN-PJA-AJ4D-SGB","name":"GN4V-RECN-PJA-AJ4D-SGB","properties":{"displayName":"0729TestUKCustomer","state":"Active","systemId":"GN4V-RECN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/I2UC-PZII-PJA-AJ4D-SGB","name":"I2UC-PZII-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"I2UC-PZII-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DOXA-JXJP-PJA-AJ4D-SGB","name":"DOXA-JXJP-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"DOXA-JXJP-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/C557-2IV7-PJA-AJ4D-SGB","name":"C557-2IV7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MaMa07312019","state":"Active","systemId":"C557-2IV7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BZ2O-HO6J-PJA-AJ4D-SGB","name":"BZ2O-HO6J-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_7","state":"Active","systemId":"BZ2O-HO6J-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/QC3L-CPVE-PJA-AJ4D-SGB","name":"QC3L-CPVE-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"QC3L-CPVE-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/OLU2-3NVJ-PJA-AJ4D-SGB","name":"OLU2-3NVJ-PJA-AJ4D-SGB","properties":{"displayName":"Woodgrove","state":"Active","systemId":"OLU2-3NVJ-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/O3IB-JN5N-PJA-AJ4D-SGB","name":"O3IB-JN5N-PJA-AJ4D-SGB","properties":{"displayName":"ContosotTestTest","state":"Active","systemId":"O3IB-JN5N-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/SEUB-Z2BL-PJA-AJ4D-SGB","name":"SEUB-Z2BL-PJA-AJ4D-SGB","properties":{"displayName":"0730TestModernCustomer","state":"Active","systemId":"SEUB-Z2BL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/XGIN-H535-PJA-AJ4D-SGB","name":"XGIN-H535-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MAMA07302019","state":"Active","systemId":"XGIN-H535-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]},"displayName":"PLAMUATT2NetNew","hasReadAccess":true,"soldTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"}},"type":"Microsoft.Billing/billingAccounts"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '19087' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:11:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account list + Connection: + - keep-alive + ParameterSetName: + - --expand + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts?api-version=2020-05-01&$expand=enrollmentDetails%2Cdepartments%2CenrollmentAccounts + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false},"displayName":"PLAMUATT2NetNew","hasReadAccess":true},"type":"Microsoft.Billing/billingAccounts"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:11:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account show + Connection: + - keep-alive + ParameterSetName: + - --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false},"displayName":"PLAMUATT2NetNew","hasReadAccess":true},"type":"Microsoft.Billing/billingAccounts"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '479' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:11:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing account show + Connection: + - keep-alive + ParameterSetName: + - --expand --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31?api-version=2020-05-01&$expand=soldTo%2CbillingProfiles%2CbillingProfiles%2FinvoiceSections + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","name":"aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31","properties":{"accountStatus":"Active","accountType":"Partner","agreementType":"MicrosoftPartnerAgreement","billingProfiles":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB/invoiceSections/WBEJ-VB7F-PJA-AJ4D-SGB","name":"WBEJ-VB7F-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer CH","state":"Active","systemId":"WBEJ-VB7F-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/ABAW-O3L6-PJA-AJ4D-SGB","name":"ABAW-O3L6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer SE","state":"Active","systemId":"ABAW-O3L6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/H5IB-BHIR-PJA-AJ4D-SGB","name":"H5IB-BHIR-PJA-AJ4D-SGB","properties":{"displayName":"Legacy + Azure Customer SE","state":"Active","systemId":"H5IB-BHIR-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB/invoiceSections/ENXS-EGM6-PJA-AJ4D-SGB","name":"ENXS-EGM6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer NO","state":"Active","systemId":"ENXS-EGM6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AWTC-47IN-PJA-AJ4D-SGB","name":"AWTC-47IN-PJA-AJ4D-SGB","properties":{"displayName":"testtest0101","state":"Active","systemId":"AWTC-47IN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RBH7-XPSH-PJA-AJ4D-SGB","name":"RBH7-XPSH-PJA-AJ4D-SGB","properties":{"displayName":"teststest122324","state":"Active","systemId":"RBH7-XPSH-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/KYWA-5WJ7-PJA-AJ4D-SGB","name":"KYWA-5WJ7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MA07291019UK","state":"Active","systemId":"KYWA-5WJ7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RY62-DIZS-PJA-AJ4D-SGB","name":"RY62-DIZS-PJA-AJ4D-SGB","properties":{"displayName":"Contoso + Services","state":"Active","systemId":"RY62-DIZS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BLUZ-V3GL-PJA-AJ4D-SGB","name":"BLUZ-V3GL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer UK","state":"Active","systemId":"BLUZ-V3GL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/F474-EL7H-PJA-AJ4D-SGB","name":"F474-EL7H-PJA-AJ4D-SGB","properties":{"displayName":"Test_customer01","state":"Active","systemId":"F474-EL7H-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/B34F-ACCN-PJA-AJ4D-SGB","name":"B34F-ACCN-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_4","state":"Active","systemId":"B34F-ACCN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AINZ-DNC7-PJA-AJ4D-SGB","name":"AINZ-DNC7-PJA-AJ4D-SGB","properties":{"displayName":"Test_Customer01","state":"Active","systemId":"AINZ-DNC7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/NERI-WTQF-PJA-AJ4D-SGB","name":"NERI-WTQF-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure UK Test","state":"Active","systemId":"NERI-WTQF-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/7O3G-UTOY-PJA-AJ4D-SGB","name":"7O3G-UTOY-PJA-AJ4D-SGB","properties":{"displayName":"0801TestUKModernCustomer","state":"Active","systemId":"7O3G-UTOY-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DNJP-OGTO-PJA-AJ4D-SGB","name":"DNJP-OGTO-PJA-AJ4D-SGB","properties":{"displayName":"Mcua + Chetan Customer UK","state":"Active","systemId":"DNJP-OGTO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/GN4V-RECN-PJA-AJ4D-SGB","name":"GN4V-RECN-PJA-AJ4D-SGB","properties":{"displayName":"0729TestUKCustomer","state":"Active","systemId":"GN4V-RECN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/I2UC-PZII-PJA-AJ4D-SGB","name":"I2UC-PZII-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"I2UC-PZII-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DOXA-JXJP-PJA-AJ4D-SGB","name":"DOXA-JXJP-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"DOXA-JXJP-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/C557-2IV7-PJA-AJ4D-SGB","name":"C557-2IV7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MaMa07312019","state":"Active","systemId":"C557-2IV7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BZ2O-HO6J-PJA-AJ4D-SGB","name":"BZ2O-HO6J-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_7","state":"Active","systemId":"BZ2O-HO6J-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/QC3L-CPVE-PJA-AJ4D-SGB","name":"QC3L-CPVE-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"QC3L-CPVE-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/OLU2-3NVJ-PJA-AJ4D-SGB","name":"OLU2-3NVJ-PJA-AJ4D-SGB","properties":{"displayName":"Woodgrove","state":"Active","systemId":"OLU2-3NVJ-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/O3IB-JN5N-PJA-AJ4D-SGB","name":"O3IB-JN5N-PJA-AJ4D-SGB","properties":{"displayName":"ContosotTestTest","state":"Active","systemId":"O3IB-JN5N-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/SEUB-Z2BL-PJA-AJ4D-SGB","name":"SEUB-Z2BL-PJA-AJ4D-SGB","properties":{"displayName":"0730TestModernCustomer","state":"Active","systemId":"SEUB-Z2BL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/XGIN-H535-PJA-AJ4D-SGB","name":"XGIN-H535-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MAMA07302019","state":"Active","systemId":"XGIN-H535-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]},"displayName":"PLAMUATT2NetNew","hasReadAccess":true,"soldTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"}},"type":"Microsoft.Billing/billingAccounts"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '19075' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 07:11:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_balance_show.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_balance_show.yaml new file mode 100644 index 00000000000..f96aadf188a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_balance_show.yaml @@ -0,0 +1,55 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing balance show + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/availableBalance/default?api-version=2020-05-01 + response: + body: + string: '{"name":"default","properties":{},"type":"Microsoft.Billing/billingAccounts/billingProfiles/availableBalance"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '110' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 09:51:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_customer_list_and_show.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_customer_list_and_show.yaml new file mode 100644 index 00000000000..31426ec529f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_customer_list_and_show.yaml @@ -0,0 +1,248 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing customer list + Connection: + - keep-alive + ParameterSetName: + - --account-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers?api-version=2020-05-01 + response: + body: + string: '{"totalCount":31,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/7b4d3841-6797-4a2a-bfc5-b61086965d14","name":"7b4d3841-6797-4a2a-bfc5-b61086965d14","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"testtest0101"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/3fb246d1-0c52-4d94-87a1-1c5734c9e14d","name":"3fb246d1-0c52-4d94-87a1-1c5734c9e14d","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-DKK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer DK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/71894b75-f4c4-49a8-a79c-c2cd1652de36","name":"71894b75-f4c4-49a8-a79c-c2cd1652de36","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Ireland Customer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/27ce7781-3097-44dd-a879-b457cf8a0834","name":"27ce7781-3097-44dd-a879-b457cf8a0834","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"teststest122324"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/43b8b5fe-4e67-497f-8e0b-e80c455ff067","name":"43b8b5fe-4e67-497f-8e0b-e80c455ff067","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer BE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/bd1033c9-49f2-4f40-ab16-98e920685b68","name":"bd1033c9-49f2-4f40-ab16-98e920685b68","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"test_test_MA07291019UK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/e9ec3e18-6fb9-4b05-8f15-b3d72e0596e6","name":"e9ec3e18-6fb9-4b05-8f15-b3d72e0596e6","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-SEK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer SE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/336a4916-e342-466c-85a4-bec505098eb2","name":"336a4916-e342-466c-85a4-bec505098eb2","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Humongous + Insurance DE1"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/431f479f-9cb2-4486-a3ad-b47f844c1dd2","name":"431f479f-9cb2-4486-a3ad-b47f844c1dd2","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Contoso + Services"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/44908a11-641b-4c53-b7fc-0f2bfca8a581","name":"44908a11-641b-4c53-b7fc-0f2bfca8a581","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer UK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/a1d73c51-4cf6-4e70-8293-a480aae40162","name":"a1d73c51-4cf6-4e70-8293-a480aae40162","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_customer01"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/7fd6b4f3-1843-4b3b-872f-206e08a08e51","name":"7fd6b4f3-1843-4b3b-872f-206e08a08e51","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-SEK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","displayName":"Legacy + Azure Customer SE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/693cca21-4791-4201-8701-f53470e9d211","name":"693cca21-4791-4201-8701-f53470e9d211","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_Test_MA20190829_4"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/c1ce86f4-6712-4bd2-904c-a540fb6add47","name":"c1ce86f4-6712-4bd2-904c-a540fb6add47","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_Customer01"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/940d153b-3e1e-4bea-99a4-34400a46ba49","name":"940d153b-3e1e-4bea-99a4-34400a46ba49","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Modern + Azure UK Test"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/f389fe1e-2d90-4371-af93-a6bab0d93254","name":"f389fe1e-2d90-4371-af93-a6bab0d93254","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"0801TestUKModernCustomer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/71457fc1-8c55-4d7d-a469-46f1cff6f87b","name":"71457fc1-8c55-4d7d-a469-46f1cff6f87b","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Mcua + Chetan Customer UK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/727ee39b-e052-4065-a9f5-993e78aa9127","name":"727ee39b-e052-4065-a9f5-993e78aa9127","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"0729TestUKCustomer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/e89eca5c-3b40-4b40-9aae-118e2e4b128c","name":"e89eca5c-3b40-4b40-9aae-118e2e4b128c","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"PLAMUATT2NetNew"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/b526d6ed-6ab4-4451-be7c-8db2de8fa83f","name":"b526d6ed-6ab4-4451-be7c-8db2de8fa83f","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"PLAMUATT2NetNew"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/5d32da84-f546-43d8-89ec-901ea23132bf","name":"5d32da84-f546-43d8-89ec-901ea23132bf","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"test_test_MaMa07312019"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/efc719d3-ff02-4ab6-918e-1a6693432f76","name":"efc719d3-ff02-4ab6-918e-1a6693432f76","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_Test_MA20190829_7"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/6e60c8fb-a50d-43d8-a80e-927b971f401b","name":"6e60c8fb-a50d-43d8-a80e-927b971f401b","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-NOK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer NO"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86","name":"ba897bfa-7111-465b-8a03-2729e540ef86","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer DE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/049deb78-5892-4326-8541-9da1fdb233fb","name":"049deb78-5892-4326-8541-9da1fdb233fb","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"PLAMUATT2NetNew"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/4400f048-02a4-4cb7-92ac-d4a9313c76a8","name":"4400f048-02a4-4cb7-92ac-d4a9313c76a8","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Woodgrove"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/2a055079-9b19-471c-a493-17d0255e78fc","name":"2a055079-9b19-471c-a493-17d0255e78fc","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"ContosotTestTest"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ff76be35-dcb6-4ffc-a71d-b1c942c2580d","name":"ff76be35-dcb6-4ffc-a71d-b1c942c2580d","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"0730TestModernCustomer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/fa37b2cf-307c-4001-812f-cc5970d48e20","name":"fa37b2cf-307c-4001-812f-cc5970d48e20","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-CHF","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer CH"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/196e2273-9651-43a3-ba7e-7cbcd918fc40","name":"196e2273-9651-43a3-ba7e-7cbcd918fc40","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Humongous + Insurance DE2"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/00aaede1-6b11-4b5b-8eb9-b8ffc284e620","name":"00aaede1-6b11-4b5b-8eb9-b8ffc284e620","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"test_test_MAMA07302019"},"type":"Microsoft.Billing/billingAccounts/customers"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '17915' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:12:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing customer list + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/customers?api-version=2020-05-01 + response: + body: + string: '{"totalCount":5,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/71894b75-f4c4-49a8-a79c-c2cd1652de36","name":"71894b75-f4c4-49a8-a79c-c2cd1652de36","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Ireland Customer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/43b8b5fe-4e67-497f-8e0b-e80c455ff067","name":"43b8b5fe-4e67-497f-8e0b-e80c455ff067","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer BE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/336a4916-e342-466c-85a4-bec505098eb2","name":"336a4916-e342-466c-85a4-bec505098eb2","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Humongous + Insurance DE1"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86","name":"ba897bfa-7111-465b-8a03-2729e540ef86","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer DE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/196e2273-9651-43a3-ba7e-7cbcd918fc40","name":"196e2273-9651-43a3-ba7e-7cbcd918fc40","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Humongous + Insurance DE2"},"type":"Microsoft.Billing/billingAccounts/customers"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '2928' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:13:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing customer show + Connection: + - keep-alive + ParameterSetName: + - --account-name --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86","name":"ba897bfa-7111-465b-8a03-2729e540ef86","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer DE","enabledAzurePlans":[],"resellers":[]},"type":"Microsoft.Billing/billingAccounts/customers"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:13:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing customer list + Connection: + - keep-alive + ParameterSetName: + - --account-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers?api-version=2020-05-01 + response: + body: + string: '{"totalCount":31,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/7b4d3841-6797-4a2a-bfc5-b61086965d14","name":"7b4d3841-6797-4a2a-bfc5-b61086965d14","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"testtest0101"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/3fb246d1-0c52-4d94-87a1-1c5734c9e14d","name":"3fb246d1-0c52-4d94-87a1-1c5734c9e14d","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-DKK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer DK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/71894b75-f4c4-49a8-a79c-c2cd1652de36","name":"71894b75-f4c4-49a8-a79c-c2cd1652de36","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Ireland Customer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/27ce7781-3097-44dd-a879-b457cf8a0834","name":"27ce7781-3097-44dd-a879-b457cf8a0834","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"teststest122324"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/43b8b5fe-4e67-497f-8e0b-e80c455ff067","name":"43b8b5fe-4e67-497f-8e0b-e80c455ff067","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer BE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/bd1033c9-49f2-4f40-ab16-98e920685b68","name":"bd1033c9-49f2-4f40-ab16-98e920685b68","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"test_test_MA07291019UK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/e9ec3e18-6fb9-4b05-8f15-b3d72e0596e6","name":"e9ec3e18-6fb9-4b05-8f15-b3d72e0596e6","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-SEK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer SE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/336a4916-e342-466c-85a4-bec505098eb2","name":"336a4916-e342-466c-85a4-bec505098eb2","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Humongous + Insurance DE1"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/431f479f-9cb2-4486-a3ad-b47f844c1dd2","name":"431f479f-9cb2-4486-a3ad-b47f844c1dd2","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Contoso + Services"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/44908a11-641b-4c53-b7fc-0f2bfca8a581","name":"44908a11-641b-4c53-b7fc-0f2bfca8a581","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer UK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/a1d73c51-4cf6-4e70-8293-a480aae40162","name":"a1d73c51-4cf6-4e70-8293-a480aae40162","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_customer01"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/7fd6b4f3-1843-4b3b-872f-206e08a08e51","name":"7fd6b4f3-1843-4b3b-872f-206e08a08e51","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-SEK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","displayName":"Legacy + Azure Customer SE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/693cca21-4791-4201-8701-f53470e9d211","name":"693cca21-4791-4201-8701-f53470e9d211","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_Test_MA20190829_4"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/c1ce86f4-6712-4bd2-904c-a540fb6add47","name":"c1ce86f4-6712-4bd2-904c-a540fb6add47","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_Customer01"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/940d153b-3e1e-4bea-99a4-34400a46ba49","name":"940d153b-3e1e-4bea-99a4-34400a46ba49","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Modern + Azure UK Test"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/f389fe1e-2d90-4371-af93-a6bab0d93254","name":"f389fe1e-2d90-4371-af93-a6bab0d93254","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"0801TestUKModernCustomer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/71457fc1-8c55-4d7d-a469-46f1cff6f87b","name":"71457fc1-8c55-4d7d-a469-46f1cff6f87b","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Mcua + Chetan Customer UK"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/727ee39b-e052-4065-a9f5-993e78aa9127","name":"727ee39b-e052-4065-a9f5-993e78aa9127","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"0729TestUKCustomer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/e89eca5c-3b40-4b40-9aae-118e2e4b128c","name":"e89eca5c-3b40-4b40-9aae-118e2e4b128c","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"PLAMUATT2NetNew"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/b526d6ed-6ab4-4451-be7c-8db2de8fa83f","name":"b526d6ed-6ab4-4451-be7c-8db2de8fa83f","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"PLAMUATT2NetNew"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/5d32da84-f546-43d8-89ec-901ea23132bf","name":"5d32da84-f546-43d8-89ec-901ea23132bf","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"test_test_MaMa07312019"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/efc719d3-ff02-4ab6-918e-1a6693432f76","name":"efc719d3-ff02-4ab6-918e-1a6693432f76","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Test_Test_MA20190829_7"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/6e60c8fb-a50d-43d8-a80e-927b971f401b","name":"6e60c8fb-a50d-43d8-a80e-927b971f401b","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-NOK","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer NO"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86","name":"ba897bfa-7111-465b-8a03-2729e540ef86","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer DE"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/049deb78-5892-4326-8541-9da1fdb233fb","name":"049deb78-5892-4326-8541-9da1fdb233fb","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"PLAMUATT2NetNew"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/4400f048-02a4-4cb7-92ac-d4a9313c76a8","name":"4400f048-02a4-4cb7-92ac-d4a9313c76a8","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"Woodgrove"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/2a055079-9b19-471c-a493-17d0255e78fc","name":"2a055079-9b19-471c-a493-17d0255e78fc","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"ContosotTestTest"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ff76be35-dcb6-4ffc-a71d-b1c942c2580d","name":"ff76be35-dcb6-4ffc-a71d-b1c942c2580d","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"0730TestModernCustomer"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/fa37b2cf-307c-4001-812f-cc5970d48e20","name":"fa37b2cf-307c-4001-812f-cc5970d48e20","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-CHF","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","displayName":"Modern + Azure Customer CH"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/196e2273-9651-43a3-ba7e-7cbcd918fc40","name":"196e2273-9651-43a3-ba7e-7cbcd918fc40","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-EUR","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","displayName":"Humongous + Insurance DE2"},"type":"Microsoft.Billing/billingAccounts/customers"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/00aaede1-6b11-4b5b-8eb9-b8ffc284e620","name":"00aaede1-6b11-4b5b-8eb9-b8ffc284e620","properties":{"billingProfileDisplayName":"PLAMUATT2NetNew-GBP","billingProfileId":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","displayName":"test_test_MAMA07302019"},"type":"Microsoft.Billing/billingAccounts/customers"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '17915' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:13:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_invoice_section_list_and_show.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_invoice_section_list_and_show.yaml new file mode 100644 index 00000000000..6b209e171de --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_invoice_section_list_and_show.yaml @@ -0,0 +1,114 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section list + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections?api-version=2020-05-01 + response: + body: + string: '{"totalCount":5,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '2188' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:21:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section show + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '431' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:21:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_policy_show_and_update.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_policy_show_and_update.yaml new file mode 100644 index 00000000000..ac44cb255ff --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_policy_show_and_update.yaml @@ -0,0 +1,275 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing policy show + Connection: + - keep-alive + ParameterSetName: + - --account-name --customer-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86/policies/default?api-version=2020-05-01 + response: + body: + string: '{"name":"default","properties":{"viewCharges":"NotAllowed"},"type":"Microsoft.Billing/billingAccounts/customers/policies"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:26:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing policy show + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/policies/default?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/policies/default","name":"default","properties":{"invoiceSectionLabelManagement":"Allowed","marketplacePurchases":"AllAllowed","reservationPurchases":"Allowed","viewCharges":"Allowed"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/policies"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:26:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"marketplacePurchases": "OnlyFreeAllowed", "reservationPurchases": + "NotAllowed", "viewCharges": "Allowed"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing policy update + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --account-name --profile-name --marketplace-purchases --reservation-purchases + --view-charges + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/policies/default?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/policies/default","name":"default","properties":{"invoiceSectionLabelManagement":"Allowed","marketplacePurchases":"OnlyFreeAllowed","reservationPurchases":"NotAllowed","viewCharges":"Allowed"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/policies"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '437' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:26:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-tenant-writes: + - '1199' + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing policy show + Connection: + - keep-alive + ParameterSetName: + - --account-name --customer-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/customers/ba897bfa-7111-465b-8a03-2729e540ef86/policies/default?api-version=2020-05-01 + response: + body: + string: '{"name":"default","properties":{"viewCharges":"NotAllowed"},"type":"Microsoft.Billing/billingAccounts/customers/policies"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:26:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing policy show + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/policies/default?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/policies/default","name":"default","properties":{"invoiceSectionLabelManagement":"Allowed","marketplacePurchases":"OnlyFreeAllowed","reservationPurchases":"NotAllowed","viewCharges":"Allowed"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/policies"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '437' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:26:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_profile_create_and_update.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_profile_create_and_update.yaml new file mode 100644 index 00000000000..42d0267dadf --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_profile_create_and_update.yaml @@ -0,0 +1,198 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile list + Connection: + - keep-alive + ParameterSetName: + - --expand --account-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles?api-version=2020-05-01&$expand=invoiceSections + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB/invoiceSections/WBEJ-VB7F-PJA-AJ4D-SGB","name":"WBEJ-VB7F-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer CH","state":"Active","systemId":"WBEJ-VB7F-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/ABAW-O3L6-PJA-AJ4D-SGB","name":"ABAW-O3L6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer SE","state":"Active","systemId":"ABAW-O3L6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/H5IB-BHIR-PJA-AJ4D-SGB","name":"H5IB-BHIR-PJA-AJ4D-SGB","properties":{"displayName":"Legacy + Azure Customer SE","state":"Active","systemId":"H5IB-BHIR-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB/invoiceSections/ENXS-EGM6-PJA-AJ4D-SGB","name":"ENXS-EGM6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer NO","state":"Active","systemId":"ENXS-EGM6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AWTC-47IN-PJA-AJ4D-SGB","name":"AWTC-47IN-PJA-AJ4D-SGB","properties":{"displayName":"testtest0101","state":"Active","systemId":"AWTC-47IN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RBH7-XPSH-PJA-AJ4D-SGB","name":"RBH7-XPSH-PJA-AJ4D-SGB","properties":{"displayName":"teststest122324","state":"Active","systemId":"RBH7-XPSH-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/KYWA-5WJ7-PJA-AJ4D-SGB","name":"KYWA-5WJ7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MA07291019UK","state":"Active","systemId":"KYWA-5WJ7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RY62-DIZS-PJA-AJ4D-SGB","name":"RY62-DIZS-PJA-AJ4D-SGB","properties":{"displayName":"Contoso + Services","state":"Active","systemId":"RY62-DIZS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BLUZ-V3GL-PJA-AJ4D-SGB","name":"BLUZ-V3GL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer UK","state":"Active","systemId":"BLUZ-V3GL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/F474-EL7H-PJA-AJ4D-SGB","name":"F474-EL7H-PJA-AJ4D-SGB","properties":{"displayName":"Test_customer01","state":"Active","systemId":"F474-EL7H-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/B34F-ACCN-PJA-AJ4D-SGB","name":"B34F-ACCN-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_4","state":"Active","systemId":"B34F-ACCN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AINZ-DNC7-PJA-AJ4D-SGB","name":"AINZ-DNC7-PJA-AJ4D-SGB","properties":{"displayName":"Test_Customer01","state":"Active","systemId":"AINZ-DNC7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/NERI-WTQF-PJA-AJ4D-SGB","name":"NERI-WTQF-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure UK Test","state":"Active","systemId":"NERI-WTQF-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/7O3G-UTOY-PJA-AJ4D-SGB","name":"7O3G-UTOY-PJA-AJ4D-SGB","properties":{"displayName":"0801TestUKModernCustomer","state":"Active","systemId":"7O3G-UTOY-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DNJP-OGTO-PJA-AJ4D-SGB","name":"DNJP-OGTO-PJA-AJ4D-SGB","properties":{"displayName":"Mcua + Chetan Customer UK","state":"Active","systemId":"DNJP-OGTO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/GN4V-RECN-PJA-AJ4D-SGB","name":"GN4V-RECN-PJA-AJ4D-SGB","properties":{"displayName":"0729TestUKCustomer","state":"Active","systemId":"GN4V-RECN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/I2UC-PZII-PJA-AJ4D-SGB","name":"I2UC-PZII-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"I2UC-PZII-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DOXA-JXJP-PJA-AJ4D-SGB","name":"DOXA-JXJP-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"DOXA-JXJP-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/C557-2IV7-PJA-AJ4D-SGB","name":"C557-2IV7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MaMa07312019","state":"Active","systemId":"C557-2IV7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BZ2O-HO6J-PJA-AJ4D-SGB","name":"BZ2O-HO6J-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_7","state":"Active","systemId":"BZ2O-HO6J-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/QC3L-CPVE-PJA-AJ4D-SGB","name":"QC3L-CPVE-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"QC3L-CPVE-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/OLU2-3NVJ-PJA-AJ4D-SGB","name":"OLU2-3NVJ-PJA-AJ4D-SGB","properties":{"displayName":"Woodgrove","state":"Active","systemId":"OLU2-3NVJ-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/O3IB-JN5N-PJA-AJ4D-SGB","name":"O3IB-JN5N-PJA-AJ4D-SGB","properties":{"displayName":"ContosotTestTest","state":"Active","systemId":"O3IB-JN5N-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/SEUB-Z2BL-PJA-AJ4D-SGB","name":"SEUB-Z2BL-PJA-AJ4D-SGB","properties":{"displayName":"0730TestModernCustomer","state":"Active","systemId":"SEUB-Z2BL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/XGIN-H535-PJA-AJ4D-SGB","name":"XGIN-H535-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MAMA07302019","state":"Active","systemId":"XGIN-H535-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '18408' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 09:39:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile list + Connection: + - keep-alive + ParameterSetName: + - --expand --account-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles?api-version=2020-05-01&$expand=invoiceSections + response: + body: + string: '{"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB","name":"5XQV-V4U6-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"CHF","displayName":"PLAMUATT2NetNew-CHF","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/5XQV-V4U6-BG7-AJ4D-SGB/invoiceSections/WBEJ-VB7F-PJA-AJ4D-SGB","name":"WBEJ-VB7F-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer CH","state":"Active","systemId":"WBEJ-VB7F-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"5XQV-V4U6-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB","name":"7AAC-54QF-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"SEK","displayName":"PLAMUATT2NetNew-SEK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/ABAW-O3L6-PJA-AJ4D-SGB","name":"ABAW-O3L6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer SE","state":"Active","systemId":"ABAW-O3L6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/7AAC-54QF-BG7-AJ4D-SGB/invoiceSections/H5IB-BHIR-PJA-AJ4D-SGB","name":"H5IB-BHIR-PJA-AJ4D-SGB","properties":{"displayName":"Legacy + Azure Customer SE","state":"Active","systemId":"H5IB-BHIR-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"7AAC-54QF-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB","name":"GTML-JUTM-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"NOK","displayName":"PLAMUATT2NetNew-NOK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/GTML-JUTM-BG7-AJ4D-SGB/invoiceSections/ENXS-EGM6-PJA-AJ4D-SGB","name":"ENXS-EGM6-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer NO","state":"Active","systemId":"ENXS-EGM6-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"Off","status":"Active","systemId":"GTML-JUTM-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB","name":"ROHX-DYIN-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"EUR","displayName":"PLAMUATT2NetNew-EUR","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"ROHX-DYIN-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB","name":"DN7P-GKOI-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","addressLine2":"","city":"Paris","companyName":"PLAMUATT2NetNew","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"DKK","displayName":"PLAMUATT2NetNew-DKK","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/DN7P-GKOI-BG7-AJ4D-SGB/invoiceSections/63DQ-IVMU-PJA-AJ4D-SGB","name":"63DQ-IVMU-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DK","state":"Active","systemId":"63DQ-IVMU-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"DN7P-GKOI-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB","name":"XXGU-AF7A-BG7-AJ4D-SGB","properties":{"billingRelationshipType":"CSPPartner","billTo":{"addressLine1":"PLAMUATT2NetNew","city":"Paris","companyName":"PLAMUATT2NetNew*","country":"FR","phoneNumber":"1234567890","postalCode":"75016","region":"Paris"},"currency":"GBP","displayName":"PLAMUATT2NetNew-GBP","enabledAzurePlans":[{"skuId":"0001","skuDescription":"Microsoft + Azure Plan"}],"hasReadAccess":true,"invoiceDay":6,"invoiceEmailOptIn":false,"invoiceSections":{"hasMoreResults":false,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AWTC-47IN-PJA-AJ4D-SGB","name":"AWTC-47IN-PJA-AJ4D-SGB","properties":{"displayName":"testtest0101","state":"Active","systemId":"AWTC-47IN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RBH7-XPSH-PJA-AJ4D-SGB","name":"RBH7-XPSH-PJA-AJ4D-SGB","properties":{"displayName":"teststest122324","state":"Active","systemId":"RBH7-XPSH-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/KYWA-5WJ7-PJA-AJ4D-SGB","name":"KYWA-5WJ7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MA07291019UK","state":"Active","systemId":"KYWA-5WJ7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/RY62-DIZS-PJA-AJ4D-SGB","name":"RY62-DIZS-PJA-AJ4D-SGB","properties":{"displayName":"Contoso + Services","state":"Active","systemId":"RY62-DIZS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BLUZ-V3GL-PJA-AJ4D-SGB","name":"BLUZ-V3GL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer UK","state":"Active","systemId":"BLUZ-V3GL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/F474-EL7H-PJA-AJ4D-SGB","name":"F474-EL7H-PJA-AJ4D-SGB","properties":{"displayName":"Test_customer01","state":"Active","systemId":"F474-EL7H-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/B34F-ACCN-PJA-AJ4D-SGB","name":"B34F-ACCN-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_4","state":"Active","systemId":"B34F-ACCN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/AINZ-DNC7-PJA-AJ4D-SGB","name":"AINZ-DNC7-PJA-AJ4D-SGB","properties":{"displayName":"Test_Customer01","state":"Active","systemId":"AINZ-DNC7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/NERI-WTQF-PJA-AJ4D-SGB","name":"NERI-WTQF-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure UK Test","state":"Active","systemId":"NERI-WTQF-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/7O3G-UTOY-PJA-AJ4D-SGB","name":"7O3G-UTOY-PJA-AJ4D-SGB","properties":{"displayName":"0801TestUKModernCustomer","state":"Active","systemId":"7O3G-UTOY-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DNJP-OGTO-PJA-AJ4D-SGB","name":"DNJP-OGTO-PJA-AJ4D-SGB","properties":{"displayName":"Mcua + Chetan Customer UK","state":"Active","systemId":"DNJP-OGTO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/GN4V-RECN-PJA-AJ4D-SGB","name":"GN4V-RECN-PJA-AJ4D-SGB","properties":{"displayName":"0729TestUKCustomer","state":"Active","systemId":"GN4V-RECN-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/I2UC-PZII-PJA-AJ4D-SGB","name":"I2UC-PZII-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"I2UC-PZII-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/DOXA-JXJP-PJA-AJ4D-SGB","name":"DOXA-JXJP-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"DOXA-JXJP-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/C557-2IV7-PJA-AJ4D-SGB","name":"C557-2IV7-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MaMa07312019","state":"Active","systemId":"C557-2IV7-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/BZ2O-HO6J-PJA-AJ4D-SGB","name":"BZ2O-HO6J-PJA-AJ4D-SGB","properties":{"displayName":"Test_Test_MA20190829_7","state":"Active","systemId":"BZ2O-HO6J-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/QC3L-CPVE-PJA-AJ4D-SGB","name":"QC3L-CPVE-PJA-AJ4D-SGB","properties":{"displayName":"PLAMUATT2NetNew","state":"Active","systemId":"QC3L-CPVE-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/OLU2-3NVJ-PJA-AJ4D-SGB","name":"OLU2-3NVJ-PJA-AJ4D-SGB","properties":{"displayName":"Woodgrove","state":"Active","systemId":"OLU2-3NVJ-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/O3IB-JN5N-PJA-AJ4D-SGB","name":"O3IB-JN5N-PJA-AJ4D-SGB","properties":{"displayName":"ContosotTestTest","state":"Active","systemId":"O3IB-JN5N-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/SEUB-Z2BL-PJA-AJ4D-SGB","name":"SEUB-Z2BL-PJA-AJ4D-SGB","properties":{"displayName":"0730TestModernCustomer","state":"Active","systemId":"SEUB-Z2BL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-SGB/invoiceSections/XGIN-H535-PJA-AJ4D-SGB","name":"XGIN-H535-PJA-AJ4D-SGB","properties":{"displayName":"test_test_MAMA07302019","state":"Active","systemId":"XGIN-H535-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]},"spendingLimit":"On","status":"Active","systemId":"XXGU-AF7A-BG7-AJ4D-SGB","targetClouds":[]},"type":"Microsoft.Billing/billingAccounts/billingProfiles"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '18408' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 09:39:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing profile show + Connection: + - keep-alive + ParameterSetName: + - --account-name --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/XXGU-AF7A-BG7-AJ4D-123?api-version=2020-05-01 + response: + body: + string: '{"code":"NotFound","message":"The resource or one of its dependencies + could not be found."}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '91' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 09:39:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_property_show.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_property_show.yaml new file mode 100644 index 00000000000..a0b2fa6c3d9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_property_show.yaml @@ -0,0 +1,53 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing property show + Connection: + - keep-alive + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Billing/billingProperty/default?api-version=2020-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Billing/billingProperty/default","name":"default","properties":{"accountAdminNotificationEmailAddress":"lovemicrosoft@microsoft.com","isAccountAdmin":false},"type":"Microsoft.Billing/billingProperty"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01, 2020-10-01 + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 10:40:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_section_create.yaml b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_section_create.yaml new file mode 100644 index 00000000000..15258254216 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/recordings/test_billing_section_create.yaml @@ -0,0 +1,267 @@ +interactions: +- request: + body: '{"properties": {"displayName": "invoiceSection1", "labels": {"costCategory": + "Support", "pcCode": "A123456"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --account-name --profile-name --name --display-name --labels + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-123?api-version=2020-05-01 + response: + body: + string: '' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 22 Oct 2020 11:27:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/operationResults/putInvoiceSection_bde4100e-bf68-4acb-9817-b658abe08fc5?api-version=2020-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-tenant-writes: + - '1199' + x-ms-service-version: + - 10.6.1387.20 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section create + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name --name --display-name --labels + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/operationResults/putInvoiceSection_bde4100e-bf68-4acb-9817-b658abe08fc5?api-version=2020-05-01 + response: + body: + string: '' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 22 Oct 2020 11:27:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/operationResults/putInvoiceSection_bde4100e-bf68-4acb-9817-b658abe08fc5?api-version=2020-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section create + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name --name --display-name --labels + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/operationResults/putInvoiceSection_bde4100e-bf68-4acb-9817-b658abe08fc5?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-123","name":"7S7S-YONO-PJA-AJ4D-123","properties":{"displayName":"invoiceSection1","labels":{"costCategory":"Support","pcCode":"A123456"},"state":"Active","systemId":"XBAI-A6MU-PJA-2YMV-SGB","tags":{"costCategory":"Support","pcCode":"A123456"}},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '531' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:27:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section list + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections?api-version=2020-05-01 + response: + body: + string: '{"totalCount":6,"value":[{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/QTHC-PDIL-PJA-AJ4D-SGB","name":"QTHC-PDIL-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Ireland Customer","state":"Active","systemId":"QTHC-PDIL-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/45XH-MP4W-PJA-AJ4D-SGB","name":"45XH-MP4W-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer BE","state":"Active","systemId":"45XH-MP4W-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-SGB","name":"7S7S-YONO-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE1","state":"Active","systemId":"7S7S-YONO-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/CSZH-A3KS-PJA-AJ4D-SGB","name":"CSZH-A3KS-PJA-AJ4D-SGB","properties":{"displayName":"Modern + Azure Customer DE","state":"Active","systemId":"CSZH-A3KS-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/VTHL-KNJG-PJA-AJ4D-SGB","name":"VTHL-KNJG-PJA-AJ4D-SGB","properties":{"displayName":"Humongous + Insurance DE2","state":"Active","systemId":"VTHL-KNJG-PJA-AJ4D-SGB"},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"},{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-123","name":"7S7S-YONO-PJA-AJ4D-123","properties":{"displayName":"invoiceSection1","labels":{"costCategory":"Support","pcCode":"A123456"},"state":"Active","systemId":"XBAI-A6MU-PJA-2YMV-SGB","tags":{"costCategory":"Support","pcCode":"A123456"}},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}]}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '2720' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:27:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - billing invoice section show + Connection: + - keep-alive + ParameterSetName: + - --account-name --profile-name --name + User-Agent: + - python/3.7.9 (Linux-4.15.0-112-generic-x86_64-with-debian-buster-sid) msrest/0.6.19 + msrest_azure/0.6.4 azure-mgmt-billing/0.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5%3A8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-123?api-version=2020-05-01 + response: + body: + string: '{"id":"/providers/Microsoft.Billing/billingAccounts/aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31/billingProfiles/ROHX-DYIN-BG7-AJ4D-SGB/invoiceSections/7S7S-YONO-PJA-AJ4D-123","name":"7S7S-YONO-PJA-AJ4D-123","properties":{"displayName":"invoiceSection1","labels":{"costCategory":"Support","pcCode":"A123456"},"state":"Active","systemId":"XBAI-A6MU-PJA-2YMV-SGB","tags":{"costCategory":"Support","pcCode":"A123456"}},"type":"Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections"}' + headers: + api-supported-versions: + - 2018-11-01-preview, 2019-10-01-preview, 2020-05-01 + cache-control: + - no-cache + content-length: + - '531' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 22 Oct 2020 11:27:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-service-version: + - 10.6.1387.20 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_commands.py b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_commands.py index 87f18b7452f..5cd8c0931d1 100644 --- a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_commands.py +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_commands.py @@ -19,31 +19,6 @@ def _validate_invoice(self, invoice, include_url=False): else: self.assertIsNone(invoice['downloadUrl']) - @record_only() - def test_list_invoices_no_url(self): - # list - invoices_list = self.cmd('billing invoice list').get_output_in_json() - self.assertTrue(invoices_list) - self._validate_invoice(invoices_list[0], False) - # get - self.kwargs.update({ - 'invoice_name': invoices_list[0]['name'] - }) - invoice = self.cmd('billing invoice show -n {invoice_name}').get_output_in_json() - self._validate_invoice(invoice, True) - - @record_only() - def test_list_invoices_with_url(self): - invoices_list = self.cmd('billing invoice list -d').get_output_in_json() - self.assertTrue(invoices_list) - self._validate_invoice(invoices_list[0], True) - - @record_only() - def test_get_latest_invoice(self): - create_cmd = 'billing invoice show' - invoice = self.cmd(create_cmd).get_output_in_json() - self._validate_invoice(invoice, True) - @record_only() def test_list_billing_periods(self): # list diff --git a/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_scenario_incrementalGenerated.py b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_scenario_incrementalGenerated.py new file mode 100644 index 00000000000..202cdb64f25 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/billing/tests/latest/test_billing_scenario_incrementalGenerated.py @@ -0,0 +1,860 @@ +# -------------------------------------------------------------------------- +# 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 os +from azure.cli.testsdk import ScenarioTest, record_only +from .. import try_manual, raise_if, calc_coverage + + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + + +# Env setup +# @try_manual +# def setup(test): +# pass + + +# EXAMPLE: /BillingAccounts/get/BillingAccounts +@try_manual +def step__billingaccounts_get_billingaccounts(test): + test.cmd('az billing account show ' + '--name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /BillingAccounts/get/BillingAccountsList +@try_manual +def step__billingaccounts_get_billingaccountslist(test): + test.cmd('az billing account list', + checks=[]) + + +# EXAMPLE: /BillingAccounts/get/BillingAccountsListWithExpand +@try_manual +def step__billingaccounts_get(test): + test.cmd('az billing account list ' + '--expand "soldTo,billingProfiles,billingProfiles/invoiceSections"', + checks=[]) + + +# EXAMPLE: /BillingAccounts/get/BillingAccountsListWithExpandForEnrollmentDetails +@try_manual +def step__billingaccounts_get2(test): + test.cmd('az billing account list ' + '--expand "enrollmentDetails,departments,enrollmentAccounts"', + checks=[]) + + +# EXAMPLE: /BillingAccounts/get/BillingAccountWithExpand +@try_manual +def step__billingaccounts_get_billingaccountwithexpand(test): + test.cmd('az billing account show ' + '--expand "soldTo,billingProfiles,billingProfiles/invoiceSections" ' + '--name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /BillingAccounts/patch/UpdateBillingAccount +@try_manual +def step__billingaccounts_patch_updatebillingaccount(test): + test.cmd('az billing account update ' + '--name "{myBillingAccount}" ' + '--display-name "Test Account" ' + '--sold-to address-line1="Test Address 1" city="Redmond" company-name="Contoso" country="US" ' + 'first-name="Test" last-name="User" postal-code="12345" region="WA"', + checks=[ + test.check("name", "{myBillingAccount}", case_sensitive=False), + test.check("displayName", "Test Account", case_sensitive=False), + test.check("soldTo.addressLine1", "Test Address 1", case_sensitive=False), + test.check("soldTo.city", "Redmond", case_sensitive=False), + test.check("soldTo.companyName", "Contoso", case_sensitive=False), + test.check("soldTo.country", "US", case_sensitive=False), + test.check("soldTo.firstName", "Test", case_sensitive=False), + test.check("soldTo.lastName", "User", case_sensitive=False), + test.check("soldTo.postalCode", "12345", case_sensitive=False), + test.check("soldTo.region", "WA", case_sensitive=False), + ]) + + +# EXAMPLE: /BillingProfiles/put/CreateBillingProfile +@try_manual +def step__billingprofiles_put_createbillingprofile(test): + test.cmd('az billing profile create ' + '--account-name "{myBillingAccount}" ' + '--name "{myBillingProfile}" ' + '--bill-to address-line1="Test Address 1" city="Redmond" country="US" first-name="Test" last-name="User" ' + 'postal-code="12345" region="WA" ' + '--display-name "Finance" ' + '--enabled-azure-plans sku-id="0001" ' + '--enabled-azure-plans sku-id="0002" ' + '--invoice-email-opt-in true ' + '--po-number "ABC12345"', + checks=[]) + + +# EXAMPLE: /BillingProfiles/get/BillingProfile +@try_manual +def step__billingprofiles_get_billingprofile(test): + test.cmd('az billing profile show ' + '--account-name "{myBillingAccount}" ' + '--name "{myBillingProfile}"', + checks=[ + test.check("name", "{myBillingProfile}", case_sensitive=False), + test.check("invoiceEmailOptIn", True), + test.check("poNumber", "ABC12345", case_sensitive=False), + ]) + + +# EXAMPLE: /BillingProfiles/get/BillingProfilesListByBillingAccount +@try_manual +def step__billingprofiles_get(test): + test.cmd('az billing profile list ' + '--account-name "{myBillingAccount}"', + checks=[ + test.check('length(@)', 1), + ]) + + +# EXAMPLE: /BillingProfiles/get/BillingProfilesListWithExpand +@try_manual +def step__billingprofiles_get2(test): + test.cmd('az billing profile list ' + '--expand "invoiceSections" ' + '--account-name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /BillingProfiles/get/BillingProfileWithExpand +@try_manual +def step__billingprofiles_get_billingprofilewithexpand(test): + test.cmd('az billing profile show ' + '--expand "invoiceSections" ' + '--account-name "{myBillingAccount}" ' + '--name "{myBillingProfile}"', + checks=[ + test.check("name", "{myBillingProfile}", case_sensitive=False), + test.check("invoiceEmailOptIn", True), + test.check("poNumber", "ABC12345", case_sensitive=False), + ]) + + +# EXAMPLE: /AvailableBalances/get/AvailableBalanceByBillingProfile +@try_manual +def step__availablebalances_get(test): + test.cmd('az billing balance show ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}"', + checks=[]) + + +# EXAMPLE: /BillingProperty/get/BillingProperty +@try_manual +def step__billingproperty_get_billingproperty(test): + test.cmd('az billing property show', + checks=[]) + + +# EXAMPLE: /BillingProperty/patch/UpdateBillingProperty +@try_manual +def step__billingproperty_patch_updatebillingproperty(test): + test.cmd('az billing property update ' + '--cost-center "1010"', + checks=[]) + + +# EXAMPLE: /Customers/get/Customer +@try_manual +def step__customers_get_customer(test): + test.cmd('az billing customer show ' + '--account-name "{myBillingAccount}" ' + '--name "{myCustomer}"', + checks=[]) + + +# EXAMPLE: /Customers/get/CustomersListByBillingAccount +@try_manual +def step__customers_get_customerslistbybillingaccount(test): + test.cmd('az billing customer list ' + '--account-name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /Customers/get/CustomersListByBillingProfile +@try_manual +def step__customers_get_customerslistbybillingprofile(test): + test.cmd('az billing customer list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}"', + checks=[]) + + +# EXAMPLE: /Customers/get/CustomerWithExpand +@try_manual +def step__customers_get_customerwithexpand(test): + test.cmd('az billing customer show ' + '--expand "enabledAzurePlans,resellers" ' + '--account-name "{myBillingAccount}" ' + '--name "{myCustomer}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/get/BillingSubscriptionsListByCustomer +@try_manual +def step__billingsubscriptions_get(test): + test.cmd('az billing subscription list ' + '--account-name "{myBillingAccount}" ' + '--customer-name "{myCustomer}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/get/BillingSubscription +@try_manual +def step__billingsubscriptions_get_billingsubscription(test): + test.cmd('az billing subscription show ' + '--account-name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/get/BillingSubscriptionsListByBillingAccount +@try_manual +def step__billingsubscriptions_get2(test): + test.cmd('az billing subscription list ' + '--account-name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/get/BillingSubscriptionsListByBillingProfile +@try_manual +def step__billingsubscriptions_get3(test): + test.cmd('az billing subscription list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/get/BillingSubscriptionsListByInvoiceSection +@try_manual +def step__billingsubscriptions_get4(test): + test.cmd('az billing subscription list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--invoice-section-name "{myInvoiceSection}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/patch/UpdateBillingProperty +@try_manual +def step__billingsubscriptions_patch(test): + test.cmd('az billing subscription update ' + '--account-name "{myBillingAccount}" ' + '--cost-center "ABC1234"', + checks=[]) + + +# EXAMPLE: /Invoices/get/BillingAccountInvoicesList +@try_manual +def step__invoices_get_billingaccountinvoiceslist(test): + test.cmd('az billing invoice list ' + '--account-name "{myBillingAccount}" ' + '--period-end-date "2018-06-30" ' + '--period-start-date "2018-01-01"', + checks=[]) + + +# EXAMPLE: /Invoices/get/BillingAccountInvoicesListWithRebillDetails +@try_manual +def step__invoices_get(test): + test.cmd('az billing invoice list ' + '--account-name "{myBillingAccount}" ' + '--period-end-date "2018-06-30" ' + '--period-start-date "2018-01-01"', + checks=[]) + + +# EXAMPLE: /Invoices/get/BillingSubscriptionsListByBillingAccount +@try_manual +def step__invoices_get2(test): + test.cmd('az billing invoice list ' + '--period-end-date "2018-06-30" ' + '--period-start-date "2018-01-01"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/post/SubscriptionMoveValidateFailure +@try_manual +def step__billingsubscriptions_post(test): + test.cmd('az billing subscription validate-move ' + '--account-name "{myBillingAccount}" ' + '--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billi' + 'ngProfiles/{billingProfileName}/invoiceSections/{newInvoiceSectionName}"', + checks=[]) + + +# EXAMPLE: /Invoices/get/Invoice +@try_manual +def step__invoices_get_invoice(test): + test.cmd('az billing invoice show ' + '--account-name "{myBillingAccount}" ' + '--name "{myInvoice}"', + checks=[]) + + +# EXAMPLE: /Invoices/get/InvoicesListByBillingProfile +@try_manual +def step__invoices_get_invoiceslistbybillingprofile(test): + test.cmd('az billing invoice list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--period-end-date "2018-06-30" ' + '--period-start-date "2018-01-01"', + checks=[]) + + +# EXAMPLE: /Invoices/get/CreditNote +@try_manual +def step__invoices_get_creditnote(test): + test.cmd('az billing invoice show ' + '--account-name "{myBillingAccount}" ' + '--name "{myInvoice}"', + checks=[]) + + +# EXAMPLE: /Invoices/get/InvoicesListByBillingProfileWithRebillDetails +@try_manual +def step__invoices_get3(test): + test.cmd('az billing invoice list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--period-end-date "2018-06-30" ' + '--period-start-date "2018-01-01"', + checks=[]) + + +# EXAMPLE: /Invoices/get/InvoiceWithRebillDetails +@try_manual +def step__invoices_get_invoicewithrebilldetails(test): + test.cmd('az billing invoice show ' + '--account-name "{myBillingAccount}" ' + '--name "{myInvoice}"', + checks=[]) + + +# EXAMPLE: /Invoices/get/VoidInvoice +@try_manual +def step__invoices_get_voidinvoice(test): + test.cmd('az billing invoice show ' + '--account-name "{myBillingAccount}" ' + '--name "{myInvoice}"', + checks=[]) + + +# EXAMPLE: /InvoiceSections/put/PutInvoiceSection +@try_manual +def step__invoicesections_put_putinvoicesection(test): + test.cmd('az billing invoice section create ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--name "{myInvoiceSection}" ' + '--display-name "invoiceSection1" ' + '--labels costCategory="Support" pcCode="A123456"', + checks=[ + test.check("name", "{myInvoiceSection}", case_sensitive=False), + test.check("displayName", "invoiceSection1", case_sensitive=False), + test.check("labels.costCategory", "Support", case_sensitive=False), + test.check("labels.pcCode", "A123456", case_sensitive=False), + ]) + + +# EXAMPLE: /InvoiceSections/get/InvoiceSection +@try_manual +def step__invoicesections_get_invoicesection(test): + test.cmd('az billing invoice section show ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--name "{myInvoiceSection}"', + checks=[ + test.check("name", "{myInvoiceSection}", case_sensitive=False), + test.check("displayName", "invoiceSection1", case_sensitive=False), + test.check("labels.costCategory", "Support", case_sensitive=False), + test.check("labels.pcCode", "A123456", case_sensitive=False), + ]) + + +# EXAMPLE: /InvoiceSections/get/InvoiceSectionsListByBillingProfile +@try_manual +def step__invoicesections_get(test): + test.cmd('az billing invoice section list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}"', + checks=[ + test.check('length(@)', 1), + ]) + + +# EXAMPLE: /BillingSubscriptions/post/MoveBillingSubscription +@try_manual +def step__billingsubscriptions_post2(test): + test.cmd('az billing subscription move ' + '--account-name "{myBillingAccount}" ' + '--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billi' + 'ngProfiles/{billingProfileName}/invoiceSections/{newInvoiceSectionName}"', + checks=[]) + + +# EXAMPLE: /BillingSubscriptions/post/SubscriptionMoveValidateSuccess +@try_manual +def step__billingsubscriptions_post3(test): + test.cmd('az billing subscription validate-move ' + '--account-name "{myBillingAccount}" ' + '--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billi' + 'ngProfiles/{billingProfileName}/invoiceSections/{newInvoiceSectionName}"', + checks=[]) + + +# EXAMPLE: /Policies/put/UpdatePolicy +@try_manual +def step__policies_put_updatepolicy(test): + test.cmd('az billing policy update ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--marketplace-purchases "OnlyFreeAllowed" ' + '--reservation-purchases "NotAllowed" ' + '--view-charges "Allowed"', + checks=[]) + + +def step__policies_showpolicybycustomer(test): + test.cmd('az billing policy show ' + '--account-name "{myBillingAccount}" ' + '--customer-name "{myCustomer}"', + checks=[]) + + +def step__policies_showpolicybyprofile(test): + test.cmd('az billing policy show ' + '--account-name {myBillingAccount} ' + '--profile-name {myBillingProfile}', + checks=[]) + + +# EXAMPLE: /Products/get/Product +@try_manual +def step__products_get_product(test): + test.cmd('az billing product show ' + '--account-name "{myBillingAccount}" ' + '--name "{myProduct}"', + checks=[]) + + +# EXAMPLE: /Products/get/ProductsListByBillingAccount +@try_manual +def step__products_get_productslistbybillingaccount(test): + test.cmd('az billing product list ' + '--account-name "{myBillingAccount}"', + checks=[]) + + +# EXAMPLE: /Products/get/ProductsListByBillingProfile +@try_manual +def step__products_get_productslistbybillingprofile(test): + test.cmd('az billing product list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}"', + checks=[]) + + +# EXAMPLE: /Products/get/ProductsListByInvoiceSection +@try_manual +def step__products_get_productslistbyinvoicesection(test): + test.cmd('az billing product list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--invoice-section-name "{myInvoiceSection}"', + checks=[]) + + +# EXAMPLE: /Products/get/ProductsListByInvoiceSection +@try_manual +def step__products_get_productslistbyinvoicesection(test): + test.cmd('az billing product list ' + '--account-name "{myBillingAccount}" ' + '--profile-name "{myBillingProfile}" ' + '--invoice-section-name "{myInvoiceSection}"', + checks=[]) + + +# EXAMPLE: /Products/patch/UpdateBillingProperty +@try_manual +def step__products_patch_updatebillingproperty(test, checks=None): + test.cmd('az billing product update ' + '--account-name "{myBillingAccount}" ' + '--auto-renew "Off" ' + '--name "{myProduct}"', + checks=[ + test.check("autoRenew", "Off", case_sensitive=False), + test.check("name", "{myProduct}", case_sensitive=False), + ]) + + +# EXAMPLE: /Products/post/MoveProduct +@try_manual +def step__products_post_moveproduct(test): + test.cmd('az billing product move ' + '--account-name "{myBillingAccount}" ' + '--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billi' + 'ngProfiles/{billingProfileName}/invoiceSections/{newInvoiceSectionName}" ' + '--name "{myProduct}"', + checks=[]) + + +# EXAMPLE: /Products/post/SubscriptionMoveValidateFailure +@try_manual +def step__products_post(test): + test.cmd('az billing product validate-move ' + '--account-name "{myBillingAccount}" ' + '--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billi' + 'ngProfiles/{billingProfileName}/invoiceSections/{newInvoiceSectionName}" ' + '--name "{myProduct}"', + checks=[]) + + +# EXAMPLE: /Products/post/SubscriptionMoveValidateSuccess +@try_manual +def step__products_post2(test): + test.cmd('az billing product validate-move ' + '--account-name "{myBillingAccount}" ' + '--destination-invoice-section-id "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billi' + 'ngProfiles/{billingProfileName}/invoiceSections/{newInvoiceSectionName}" ' + '--name "{myProduct}"', + checks=[]) + + +# EXAMPLE: /Transactions/get/TransactionsListByInvoice +@try_manual +def step__transactions_get_transactionslistbyinvoice(test): + test.cmd('az billing transaction list ' + '--account-name "{myBillingAccount}" ' + '--invoice-name "{myInvoice}"', + checks=[]) + + +# Env cleanup +# @try_manual +# def cleanup(test): +# pass + + +# Testcase +# @try_manual +# def call_scenario(test): +# setup(test) +# step__billingaccounts_get_billingaccounts(test) +# step__billingaccounts_get_billingaccountslist(test) +# step__billingaccounts_get(test) +# step__billingaccounts_get2(test) +# step__billingaccounts_get_billingaccountwithexpand(test) +# step__billingaccounts_patch_updatebillingaccount(test) +# step__billingprofiles_put_createbillingprofile(test) +# step__billingprofiles_get_billingprofile(test) +# step__billingprofiles_get(test) +# step__billingprofiles_get2(test) +# step__billingprofiles_get_billingprofilewithexpand(test) +# step__availablebalances_get(test) +# step__billingproperty_get_billingproperty(test) +# step__billingproperty_patch_updatebillingproperty(test) +# step__customers_get_customer(test) +# step__customers_get_customerslistbybillingaccount(test) +# step__customers_get_customerslistbybillingaccount(test) +# step__customers_get_customerwithexpand(test) +# step__billingsubscriptions_get(test) +# step__billingsubscriptions_get_billingsubscription(test) +# step__billingsubscriptions_get2(test) +# step__billingsubscriptions_get3(test, checs=[ +# self.check() +# ]) +# step__billingsubscriptions_get4(test) +# step__billingsubscriptions_patch(test) +# step__invoices_get_billingaccountinvoiceslist(test) +# step__invoices_get(test) +# step__invoices_get2(test) +# step__billingsubscriptions_post(test) +# step__invoices_get_invoice(test) +# step__invoices_get_invoiceslistbybillingprofile(test) +# step__invoices_get_creditnote(test) +# step__invoices_get3(test) +# step__invoices_get_invoicewithrebilldetails(test) +# step__invoices_get_voidinvoice(test) +# step__invoicesections_put_putinvoicesection(test) +# step__invoicesections_get_invoicesection(test) +# step__invoicesections_get(test) +# step__billingsubscriptions_post2(test) +# step__billingsubscriptions_post3(test) +# step__policies_put_updatepolicy(test) +# step__products_get_product(test) +# step__products_get_productslistbybillingaccount(test) +# step__products_get_productslistbybillingprofile(test) +# step__products_get_productslistbyinvoicesection(test) +# step__products_get_productslistbyinvoicesection(test) +# step__products_patch_updatebillingproperty(test) +# step__products_post_moveproduct(test) +# step__products_post(test) +# step__products_post2(test) +# step__transactions_get_transactionslistbyinvoice(test) +# cleanup(test) + + +# @try_manual +# class BillingManagementClientScenarioTest(ScenarioTest): + +# def test_billing(self): + +# self.kwargs.update({ +# 'myBillingAccount': '{billingAccountName}', +# 'myBillingProfile': '{billingProfileName}', +# 'myCustomer': '{customerName}', +# 'myInvoiceSection': '{invoiceSectionName}', +# 'myProduct': '{productName}', +# 'myInvoice': '{invoiceName}', +# }) + +# call_scenario(self) +# calc_coverage(__file__) +# raise_if() +# Testcase2 +# @try_manual +# def call_scenario2 (test): +# setup(test) +# step__billingprofiles_put_createbillingprofile(test) +# step__billingprofiles_get_billingprofile(test) +# step__billingprofiles_get(test) +# step__billingprofiles_get2(test) +# step__billingprofiles_get_billingprofilewithexpand(test) +# step__customers_get_customer(test) + +# @try_manual +# class BillingScenarioTest(ScenarioTest): + +# def test_billing(self): + +# self.kwargs.update({ +# 'myBillingProfile': '{billingProfileName}', +# 'myCustomer': '{customerName}', +# 'myInvoiceSection': '{invoiceSectionName}', +# 'myProduct': '{productName}', +# 'myInvoice': '{invoiceName}', +# }) + +# call_scenario(self) +# calc_coverage(__file__) +# raise_if() + +# def test_billing2(self): + +# self.kwargs.update({ +# 'myBillingProfile': '{billingProfileName}', +# 'myCustomer': '{customerName}', +# 'myInvoiceSection': '{invoiceSectionName}', +# 'myProduct': '{productName}', +# 'myInvoice': '{invoiceName}', +# }) + +# call_scenario2(self) +# calc_coverage(__file__) +# raise_if() + + +@record_only() +@try_manual +class BillingAccountScenarioTest(ScenarioTest): + def test_billing_account_list_and_show(self): + + # list billing accounts without any arguments + step__billingaccounts_get_billingaccountslist(self) + + # list billing accounts with expanded arguments + step__billingaccounts_get(self) + step__billingaccounts_get2(self) + + self.kwargs.update({ + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31" # This name is give by service team + }) + + # show billing account with name + step__billingaccounts_get_billingaccounts(self) + # show billing account with expaned arguments + step__billingaccounts_get_billingaccountwithexpand(self) + + def test_billing_account_update(self): + pass + + # # show + # step__billingaccounts_get_billingaccountwithexpand(self) + + # # update + # step__billingaccounts_patch_updatebillingaccount(self) + + # # show and check for updated properties + # step__billingaccounts_get_billingaccountwithexpand(self) + + +@record_only() +@try_manual +class BillingProfileScenarioTest(ScenarioTest): + + def setUp(self): + super().setUp() + self.kwargs.update({ + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31" # This name is give by service team + }) + + def test_biiling_profile_list_and_show(self): + + # list billing profiles under a certain billing account + step__billingprofiles_get(self) + + # list billing profiles with expanded arguments + step__billingprofiles_get2(self) + + self.kwargs.update({ + "myBillingProfile": "DN7P-GKOI-BG7-AJ4D-SGB" + }) + + # show a billing profile with default properties + step__billingprofiles_get_billingprofile(self) + # show a billing profile with expaned properties + step__billingprofiles_get_billingprofilewithexpand(self) + + def test_billing_profile_create_and_update(self): + + # list existing billing profiles + step__billingprofiles_get2(self) + + self.kwargs.update({ + "myBillingProfile": "XXGU-AF7A-BG7-AJ4D-123" + }) + + # create a new billing profile + # step__billingprofiles_put_createbillingprofile(self) # this API is not working + + # list new appended billing profiles + step__billingprofiles_get2(self) + + # show that billing profile + step__billingprofiles_get_billingprofile(self) + + +@record_only() +class BillingAccountScenarioTest(ScenarioTest): + def test_billing_balance_show(self): + self.kwargs.update({ + # This name is give by service team + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31", + "myBillingProfile": "ROHX-DYIN-BG7-AJ4D-SGB" + }) + step__availablebalances_get(self) + + +@record_only() +class BillingCustomerScenarioTest(ScenarioTest): + + def test_billing_customer_list_and_show(self): + + self.kwargs.update({ + # This name is give by service team + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31", + "myBillingProfile": "ROHX-DYIN-BG7-AJ4D-SGB", + }) + + step__customers_get_customerslistbybillingaccount(self) + step__customers_get_customerslistbybillingprofile(self) + + self.kwargs.update({ + "myCustomer": "ba897bfa-7111-465b-8a03-2729e540ef86" + }) + + step__customers_get_customer(self) + step__customers_get_customerslistbybillingaccount(self) + + +@record_only() +class BillingPolicyScenarioTest(ScenarioTest): + + def test_billing_policy_show_and_update(self): + self.kwargs.update({ + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31", + "myBillingProfile": "ROHX-DYIN-BG7-AJ4D-SGB", + "myCustomer": "ba897bfa-7111-465b-8a03-2729e540ef86" + }) + + step__policies_showpolicybycustomer(self) + step__policies_showpolicybyprofile(self) + + step__policies_put_updatepolicy(self) + + step__policies_showpolicybycustomer(self) + step__policies_showpolicybyprofile(self) + + +@record_only() +class BillingPropertyScenarioTest(ScenarioTest): + + def test_billing_property_show(self): + # have to set a subscription first + # removed sensitive information manually from recording file + step__billingproperty_get_billingproperty(self) + + +# All of operations are forbidden +@record_only() +class BillingInvoiceScenarioTest(ScenarioTest): + def test_billing_invoice_list_and_show(self): + self.kwargs.update({ + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31", + }) + + # list by billing account + # step__invoices_get_billingaccountinvoiceslist(self) + # step__invoices_get2(self) + # list by billing account and billing profile + # step__invoices_get_invoiceslistbybillingprofile(self) + + +@record_only() +class BillingInvoiceSectionScenarioTest(ScenarioTest): + def setUp(self): + super().setUp() + + self.kwargs.update({ + "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31", + "myBillingProfile": "ROHX-DYIN-BG7-AJ4D-SGB", + "myInvoiceSection": "7S7S-YONO-PJA-AJ4D-SGB" + }) + + def test_billing_invoice_section_list_and_show(self): + step__invoicesections_get(self) + step__invoicesections_get_invoicesection(self) + + def test_billing_section_create(self): + self.kwargs.update({ + "myInvoiceSection": "7S7S-YONO-PJA-AJ4D-123" + }) + step__invoicesections_put_putinvoicesection(self) + step__invoicesections_get(self) + step__invoicesections_get_invoicesection(self) + + +# class BillingTransactionScenarioTest(ScenarioTest): +# def test_billing_transaction_list(self): +# self.kwargs.update({ +# "myBillingAccount": "aff095f4-f26b-5334-db79-29704a77c0e5:8d5301c9-db55-4eb6-8611-9db0417d6cb2_2019-05-31", +# "myInvoice": "" +# }) +# step__transactions_get_transactionslistbyinvoice(self) diff --git a/src/azure-cli/azure/cli/command_modules/cloud/_help.py b/src/azure-cli/azure/cli/command_modules/cloud/_help.py index 5f210e904f4..c170888f5d4 100644 --- a/src/azure-cli/azure/cli/command_modules/cloud/_help.py +++ b/src/azure-cli/azure/cli/command_modules/cloud/_help.py @@ -37,10 +37,10 @@ } or { - "endpoint":{ + "endpoints":{ "activeDirectory": "https://login.microsoftonline.us" }, - "suffix":{ + "suffixes":{ "acrLoginServerEndpoint": ".azurecr.us" } } diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml index e94338b35cd..bedb01e2321 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml @@ -18,44 +18,42 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00009e1a-0000-3300-0000-5ed6c6990000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"568bc92c08f74d6aacdcb71c0f2c41f9","dateCreated":"2020-06-02T21:37:29.4924764Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02001114-0000-3300-0000-5f9907aa0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"767b57d3a0fd430d948cbe4797d38965","dateCreated":"2020-10-28T05:54:49.952909Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"face/v1.0/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e37dad10-6467-4833-a0e9-2215520a9c6f?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c3133b4c-370f-4fca-9854-2480e0816a71?api-version=2017-04-18 cache-control: - no-cache content-length: - - '665' + - '1084' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:37:29 GMT + - Wed, 28 Oct 2020 05:54:51 GMT etag: - - '"00009e1a-0000-3300-0000-5ed6c6990000"' + - '"02001114-0000-3300-0000-5f9907aa0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '390' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 201 message: Created @@ -73,44 +71,95 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00009e1a-0000-3300-0000-5ed6c6990000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"568bc92c08f74d6aacdcb71c0f2c41f9","dateCreated":"2020-06-02T21:37:29.4924764Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02001514-0000-3300-0000-5f9907ab0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"767b57d3a0fd430d948cbe4797d38965","dateCreated":"2020-10-28T05:54:49.952909Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"face/v1.0/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '665' + - '1085' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:37:30 GMT + - Wed, 28 Oct 2020 05:54:53 GMT etag: - - '"00009e1a-0000-3300-0000-5ed6c6990000"' + - '"02001514-0000-3300-0000-5f9907ab0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '25' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02001514-0000-3300-0000-5f9907ab0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"767b57d3a0fd430d948cbe4797d38965","dateCreated":"2020-10-28T05:54:49.952909Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"face/v1.0/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1085' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 05:55:09 GMT + etag: + - '"02001514-0000-3300-0000-5f9907ab0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '23' status: code: 200 message: OK @@ -130,8 +179,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -141,31 +190,29 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/1afc069f-dc1d-47af-be1c-f7b476873a8e?api-version=2016-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/7a1ca6bd-04db-484a-bee7-bbaf78eb48c9?api-version=2017-04-18 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jun 2020 21:37:32 GMT + - Wed, 28 Oct 2020 05:55:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/1afc069f-dc1d-47af-be1c-f7b476873a8e?api-version=2016-02-01-preview&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/7a1ca6bd-04db-484a-bee7-bbaf78eb48c9?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '343' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml index 085f46ad511..2fff8e56337 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml @@ -17,44 +17,42 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --kind --sku -l --assign-identity --storages --yes + - -n -g --kind --sku -l --assign-identity --storage --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600b9eb-0000-3300-0000-5edd9ec40000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"c6dff38e751e4e21978c9934fbdbaef0","dateCreated":"2020-06-08T02:13:23.9423961Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"3a24dfb2-4ae2-47c2-a32b-5b46f5715505","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01005dfe-0000-3300-0000-5f9900ae0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"b340ce2f81904129b85d3ff80e63f4de","dateCreated":"2020-10-28T05:25:01.8764256Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"6b3ec1ce-4ad5-4699-9e65-1046d1b1e634","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2028' + - '2511' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 02:13:24 GMT + - Wed, 28 Oct 2020 05:25:03 GMT etag: - - '"0600b9eb-0000-3300-0000-5edd9ec40000"' + - '"01005dfe-0000-3300-0000-5f9900ae0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '604' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1198' status: code: 201 message: Created @@ -72,44 +70,42 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600b9eb-0000-3300-0000-5edd9ec40000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"c6dff38e751e4e21978c9934fbdbaef0","dateCreated":"2020-06-08T02:13:23.9423961Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"3a24dfb2-4ae2-47c2-a32b-5b46f5715505","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01005dfe-0000-3300-0000-5f9900ae0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"b340ce2f81904129b85d3ff80e63f4de","dateCreated":"2020-10-28T05:25:01.8764256Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"6b3ec1ce-4ad5-4699-9e65-1046d1b1e634","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2028' + - '2511' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 02:13:25 GMT + - Wed, 28 Oct 2020 05:25:04 GMT etag: - - '"0600b9eb-0000-3300-0000-5edd9ec40000"' + - '"01005dfe-0000-3300-0000-5f9900ae0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '29' status: code: 200 message: OK @@ -129,8 +125,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -144,23 +140,21 @@ interactions: content-length: - '0' date: - - Mon, 08 Jun 2020 02:13:26 GMT + - Wed, 28 Oct 2020 05:25:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '154' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -183,42 +177,40 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600beeb-0000-3300-0000-5edd9ec90000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"b0890b0ab36b4315893a85c68855fd0e","dateCreated":"2020-06-08T02:13:29.5689714Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"f345789c-ecf3-4cf8-97d8-3e7941c41150","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01006dfe-0000-3300-0000-5f9900c10000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1856' + - '2339' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 02:13:29 GMT + - Wed, 28 Oct 2020 05:25:21 GMT etag: - - '"0600beeb-0000-3300-0000-5edd9ec90000"' + - '"01006dfe-0000-3300-0000-5f9900c10000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '455' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 201 message: Created @@ -234,46 +226,44 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --storages + - -n -g --storage User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600beeb-0000-3300-0000-5edd9ec90000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"b0890b0ab36b4315893a85c68855fd0e","dateCreated":"2020-06-08T02:13:29.5689714Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"f345789c-ecf3-4cf8-97d8-3e7941c41150","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01006dfe-0000-3300-0000-5f9900c10000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1856' + - '2339' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 02:13:30 GMT + - Wed, 28 Oct 2020 05:25:22 GMT etag: - - '"0600beeb-0000-3300-0000-5edd9ec90000"' + - '"01006dfe-0000-3300-0000-5f9900c10000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '25' status: code: 200 message: OK @@ -294,48 +284,46 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --storages + - -n -g --storage User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600c3eb-0000-3300-0000-5edd9ecc0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","internalId":"b0890b0ab36b4315893a85c68855fd0e","dateCreated":"2020-06-08T02:13:29.5689714Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[]},"identity":{"principalId":"f345789c-ecf3-4cf8-97d8-3e7941c41150","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01007afe-0000-3300-0000-5f9900c50000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}]},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2028' + - '2511' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 02:13:32 GMT + - Wed, 28 Oct 2020 05:25:27 GMT etag: - - '"0600c3eb-0000-3300-0000-5edd9ecc0000"' + - '"01007afe-0000-3300-0000-5f9900c50000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '176' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -353,44 +341,42 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2017-04-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600c3eb-0000-3300-0000-5edd9ecc0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","internalId":"b0890b0ab36b4315893a85c68855fd0e","dateCreated":"2020-06-08T02:13:29.5689714Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[]},"identity":{"principalId":"f345789c-ecf3-4cf8-97d8-3e7941c41150","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01007afe-0000-3300-0000-5f9900c50000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}]},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2028' + - '2511' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 02:13:33 GMT + - Wed, 28 Oct 2020 05:25:28 GMT etag: - - '"0600c3eb-0000-3300-0000-5edd9ecc0000"' + - '"01007afe-0000-3300-0000-5f9900c50000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '19' status: code: 200 message: OK @@ -410,8 +396,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -425,23 +411,21 @@ interactions: content-length: - '0' date: - - Mon, 08 Jun 2020 02:13:35 GMT + - Wed, 28 Oct 2020 05:25:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '194' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_account_properties.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_account_properties.py index 5693a139f8d..9de4d303f9c 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_account_properties.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_account_properties.py @@ -55,6 +55,13 @@ def test_cognitiveservices_account_public_network_access(self, resource_group): print(account) self.assertEqual(account['properties']['publicNetworkAccess'], 'Enabled') + import time + for i in range(10): + time.sleep(15) + account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() + if 'Creating' != account['properties']['provisioningState']: + break + # delete the cognitive services account ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') self.assertEqual(ret.exit_code, 0) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py index d8093baea99..c9d0686354b 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py @@ -13,13 +13,13 @@ class CognitiveServicesByoxTests(ScenarioTest): @ResourceGroupPreparer() def test_cognitiveservices_user_owned_storage(self, resource_group): sname = self.create_random_name(prefix='cs_cli_test_', length=16) - + subscription_id = 'f9b96b36-1f5e-4021-8959-51527e26e6d3' if self.is_live else '00000000-0000-0000-0000-000000000000' self.kwargs.update({ 'sname': sname, 'kind': 'SpeechServices', 'sku': 'S0', 'location': 'centraluseuap', - 'storageIds': '[{\\\"resourceId\\\":\\\"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest\\\"}]' + 'storageIds': '[{\\\"resourceId\\\":\\\"/subscriptions/' + subscription_id + '/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest\\\"}]' }) # test to create cognitive services account @@ -34,7 +34,7 @@ def test_cognitiveservices_user_owned_storage(self, resource_group): self.assertEqual(account['identity']['type'], 'SystemAssigned') self.assertEqual(len(account['properties']['userOwnedStorage']), 1) - self.assertEqual(account['properties']['userOwnedStorage'][0]['resourceId'], '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest') + self.assertEqual(account['properties']['userOwnedStorage'][0]['resourceId'], '/subscriptions/{}/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest'.format(subscription_id)) # delete the cognitive services account ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') @@ -52,7 +52,7 @@ def test_cognitiveservices_user_owned_storage(self, resource_group): self.assertEqual(account['identity']['type'], 'SystemAssigned') self.assertEqual(len(account['properties']['userOwnedStorage']), 1) - self.assertEqual(account['properties']['userOwnedStorage'][0]['resourceId'], '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest') + self.assertEqual(account['properties']['userOwnedStorage'][0]['resourceId'], '/subscriptions/{}/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest'.format(subscription_id)) # delete the cognitive services account ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') @@ -79,7 +79,7 @@ def test_cognitiveservices_encryption(self, resource_group): self.check('properties.provisioningState', 'Creating')]) for i in range(10): - time.sleep(0.1) # when generating recording, use a large value such as 15 + time.sleep(15) account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() if 'Creating' != account['properties']['provisioningState']: break diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml index 9727550a475..38f8fba7941 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml @@ -14,23 +14,23 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_collection000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001","name":"cli_test_cosmosdb_mongodb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-08-25T07:18:22Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001","name":"cli_test_cosmosdb_mongodb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T06:30:03Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Aug 2020 07:18:23 GMT + - Wed, 28 Oct 2020 06:30:07 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -73,26 +73,26 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-08-25T07:18:30.3980356Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"f050011e-a5ed-4ba8-99f6-7ed1cae13a5a","createMode":"Default","databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-10-28T06:30:13.1821654Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"c83d05f8-75fb-4d7e-977b-8639418d0815","createMode":"Default","databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[],"backupPolicy":{"type":"Periodic","periodicModeProperties":{"backupIntervalInMinutes":240,"backupRetentionIntervalInHours":8}}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '1768' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:18:32 GMT + - Wed, 28 Oct 2020 06:30:15 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: Ok @@ -127,9 +127,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:19:03 GMT + - Wed, 28 Oct 2020 06:30:45 GMT pragma: - no-cache server: @@ -176,9 +176,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:19:33 GMT + - Wed, 28 Oct 2020 06:31:16 GMT pragma: - no-cache server: @@ -225,9 +225,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:20:03 GMT + - Wed, 28 Oct 2020 06:31:46 GMT pragma: - no-cache server: @@ -274,9 +274,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:20:33 GMT + - Wed, 28 Oct 2020 06:32:17 GMT pragma: - no-cache server: @@ -323,9 +323,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:21:04 GMT + - Wed, 28 Oct 2020 06:32:49 GMT pragma: - no-cache server: @@ -372,9 +372,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:21:35 GMT + - Wed, 28 Oct 2020 06:33:20 GMT pragma: - no-cache server: @@ -421,9 +421,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:22:05 GMT + - Wed, 28 Oct 2020 06:33:51 GMT pragma: - no-cache server: @@ -470,9 +470,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:22:35 GMT + - Wed, 28 Oct 2020 06:34:21 GMT pragma: - no-cache server: @@ -519,9 +519,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:23:06 GMT + - Wed, 28 Oct 2020 06:34:51 GMT pragma: - no-cache server: @@ -568,9 +568,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:23:37 GMT + - Wed, 28 Oct 2020 06:35:22 GMT pragma: - no-cache server: @@ -617,9 +617,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:24:07 GMT + - Wed, 28 Oct 2020 06:35:53 GMT pragma: - no-cache server: @@ -666,9 +666,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:24:38 GMT + - Wed, 28 Oct 2020 06:36:23 GMT pragma: - no-cache server: @@ -715,9 +715,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:25:12 GMT + - Wed, 28 Oct 2020 06:36:53 GMT pragma: - no-cache server: @@ -764,9 +764,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:25:42 GMT + - Wed, 28 Oct 2020 06:37:24 GMT pragma: - no-cache server: @@ -813,9 +813,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:26:12 GMT + - Wed, 28 Oct 2020 06:37:54 GMT pragma: - no-cache server: @@ -862,9 +862,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:26:43 GMT + - Wed, 28 Oct 2020 06:38:26 GMT pragma: - no-cache server: @@ -911,9 +911,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:27:13 GMT + - Wed, 28 Oct 2020 06:38:56 GMT pragma: - no-cache server: @@ -960,9 +960,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:27:44 GMT + - Wed, 28 Oct 2020 06:39:26 GMT pragma: - no-cache server: @@ -1009,9 +1009,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:28:15 GMT + - Wed, 28 Oct 2020 06:39:56 GMT pragma: - no-cache server: @@ -1058,9 +1058,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:28:45 GMT + - Wed, 28 Oct 2020 06:40:26 GMT pragma: - no-cache server: @@ -1107,9 +1107,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:29:18 GMT + - Wed, 28 Oct 2020 06:40:58 GMT pragma: - no-cache server: @@ -1156,401 +1156,9 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:29:48 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:30:20 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:30:50 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:31:20 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:31:50 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:32:20 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:32:51 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 - content-type: - - application/json - date: - - Tue, 25 Aug 2020 07:33:21 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.11.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cosmosdb create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --enable-analytical-storage - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1560,11 +1168,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c265d6a-5d6d-45a3-958f-dbbc54985d1d?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55abe31d-0c69-4f57-bc2b-e1274e982576?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:33:52 GMT + - Wed, 28 Oct 2020 06:41:29 GMT pragma: - no-cache server: @@ -1597,13 +1205,13 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-08-25T07:33:36.1217832Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"f050011e-a5ed-4ba8-99f6-7ed1cae13a5a","createMode":"Default","databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-10-28T06:41:21.1652654Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"c83d05f8-75fb-4d7e-977b-8639418d0815","createMode":"Default","databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West @@ -1614,11 +1222,11 @@ interactions: content-length: - '2098' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:33:52 GMT + - Wed, 28 Oct 2020 06:41:29 GMT pragma: - no-cache server: @@ -1651,7 +1259,7 @@ interactions: - -n -g --kind --enable-analytical-storage User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1659,7 +1267,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-08-25T07:33:36.1217832Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"f050011e-a5ed-4ba8-99f6-7ed1cae13a5a","createMode":"Default","databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-10-28T06:41:21.1652654Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"c83d05f8-75fb-4d7e-977b-8639418d0815","createMode":"Default","databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West @@ -1670,11 +1278,11 @@ interactions: content-length: - '2098' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:33:54 GMT + - Wed, 28 Oct 2020 06:41:30 GMT pragma: - no-cache server: @@ -1711,7 +1319,7 @@ interactions: - -g -a -n User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -1721,19 +1329,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6d9d2fac-7a54-41ba-a1d6-5959b35da376?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff0274ed-0847-4f30-90fc-18d10214b452?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:33:56 GMT + - Wed, 28 Oct 2020 06:41:30 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/6d9d2fac-7a54-41ba-a1d6-5959b35da376?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/ff0274ed-0847-4f30-90fc-18d10214b452?api-version=2020-04-01 pragma: - no-cache server: @@ -1745,7 +1353,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 202 message: Accepted @@ -1764,9 +1372,9 @@ interactions: - -g -a -n User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6d9d2fac-7a54-41ba-a1d6-5959b35da376?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff0274ed-0847-4f30-90fc-18d10214b452?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1776,11 +1384,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6d9d2fac-7a54-41ba-a1d6-5959b35da376?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff0274ed-0847-4f30-90fc-18d10214b452?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:34:27 GMT + - Wed, 28 Oct 2020 06:42:01 GMT pragma: - no-cache server: @@ -1813,23 +1421,23 @@ interactions: - -g -a -n User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"LzUuAA==","_etag":"\"0000c63a-0000-0700-0000-5f44bee90000\"","_ts":1598340841}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"FB1QAA==","_etag":"\"0000c028-0000-0700-0000-5f99129f0000\"","_ts":1603867295}}}' headers: cache-control: - no-store, no-cache content-length: - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:34:28 GMT + - Wed, 28 Oct 2020 06:42:02 GMT pragma: - no-cache server: @@ -1862,7 +1470,7 @@ interactions: - -g -a -d -n User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1871,17 +1479,17 @@ interactions: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: {\\\"Errors\\\":[\\\"Resource Not Found. Learn more: https:\\\\/\\\\/aka.ms\\\\/cosmosdb-tsg-not-found\\\"]}\\r\\nActivityId: - 6928798c-e6a5-11ea-b3f3-84a93e64b16e, Request URI: /apps/112e82de-8353-4f6c-804f-e6ce36a8282f/services/f2bef6cd-7b26-40da-886b-b4e7378fc5a6/partitions/eaf00694-18e9-44b4-89bb-4355c0c12a31/replicas/132428136700960320s, - RequestStats: \\r\\nRequestStartTime: 2020-08-25T07:34:30.6478604Z, RequestEndTime: - 2020-08-25T07:34:30.6478604Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-08-25T07:34:30.6478604Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/112e82de-8353-4f6c-804f-e6ce36a8282f/services/f2bef6cd-7b26-40da-886b-b4e7378fc5a6/partitions/eaf00694-18e9-44b4-89bb-4355c0c12a31/replicas/132428136700960320s, - LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, + b0b506e4-18e8-11eb-a711-84a93e64b16e, Request URI: /apps/f7431d5f-4c6b-4d88-b916-8d6c61f38565/services/e7d0f6ef-c3c7-4124-89a9-5a3a69057013/partitions/f6999dfe-7358-4ba6-b64f-9c1d318821c9/replicas/132483396092966583s, + RequestStats: \\r\\nRequestStartTime: 2020-10-28T06:42:04.9096395Z, RequestEndTime: + 2020-10-28T06:42:04.9096395Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-10-28T06:42:04.9096395Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f7431d5f-4c6b-4d88-b916-8d6c61f38565/services/e7d0f6ef-c3c7-4124-89a9-5a3a69057013/partitions/f6999dfe-7358-4ba6-b64f-9c1d318821c9/replicas/132483396092966583s, + LSN: 6, GlobalCommittedLsn: 6, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#6, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, - OperationType: Read\\r\\nResponseTime: 2020-08-25T07:34:30.6478604Z, StoreResult: - StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/112e82de-8353-4f6c-804f-e6ce36a8282f/services/f2bef6cd-7b26-40da-886b-b4e7378fc5a6/partitions/eaf00694-18e9-44b4-89bb-4355c0c12a31/replicas/132428136700960321s, - LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, + OperationType: Read\\r\\nResponseTime: 2020-10-28T06:42:04.9096395Z, StoreResult: + StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/f7431d5f-4c6b-4d88-b916-8d6c61f38565/services/e7d0f6ef-c3c7-4124-89a9-5a3a69057013/partitions/f6999dfe-7358-4ba6-b64f-9c1d318821c9/replicas/132483396092966581s, + LSN: 6, GlobalCommittedLsn: 6, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#6, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000004/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1891,11 +1499,11 @@ interactions: content-length: - '1795' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:34:29 GMT + - Wed, 28 Oct 2020 06:42:04 GMT pragma: - no-cache server: @@ -1929,7 +1537,7 @@ interactions: - -g -a -d -n --shard --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -1939,19 +1547,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/462ce367-22fe-4ae7-8151-0c1f807a7006?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/258d8fa8-7dd3-4034-b438-0ef2872db920?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:34:31 GMT + - Wed, 28 Oct 2020 06:42:05 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/462ce367-22fe-4ae7-8151-0c1f807a7006?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/258d8fa8-7dd3-4034-b438-0ef2872db920?api-version=2020-04-01 pragma: - no-cache server: @@ -1963,7 +1571,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1982,9 +1590,9 @@ interactions: - -g -a -d -n --shard --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/462ce367-22fe-4ae7-8151-0c1f807a7006?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/258d8fa8-7dd3-4034-b438-0ef2872db920?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1994,11 +1602,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/462ce367-22fe-4ae7-8151-0c1f807a7006?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/258d8fa8-7dd3-4034-b438-0ef2872db920?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:01 GMT + - Wed, 28 Oct 2020 06:42:37 GMT pragma: - no-cache server: @@ -2031,23 +1639,23 @@ interactions: - -g -a -d -n --shard --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"LzUuAN93fSY=","_etag":"\"0000c83a-0000-0700-0000-5f44bf0b0000\"","_ts":1598340875,"analyticalStorageTtl":3000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"FB1QAPOs1fQ=","_etag":"\"0000c228-0000-0700-0000-5f9912c10000\"","_ts":1603867330,"analyticalStorageTtl":3000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '649' + - '687' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:02 GMT + - Wed, 28 Oct 2020 06:42:38 GMT pragma: - no-cache server: @@ -2080,25 +1688,25 @@ interactions: - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"LzUuAN93fSY=","_etag":"\"0000c83a-0000-0700-0000-5f44bf0b0000\"","_ts":1598340875,"analyticalStorageTtl":3000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"FB1QAPOs1fQ=","_etag":"\"0000c228-0000-0700-0000-5f9912c10000\"","_ts":1603867330,"analyticalStorageTtl":3000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '649' + - '687' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:04 GMT + - Wed, 28 Oct 2020 06:42:39 GMT pragma: - no-cache server: @@ -2137,7 +1745,7 @@ interactions: - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -2147,19 +1755,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9b4faf50-28e6-4dee-bf07-99f09d2c84f9?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4e5f7093-ce35-44c3-8ed9-e47959cd88d5?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:04 GMT + - Wed, 28 Oct 2020 06:42:40 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/9b4faf50-28e6-4dee-bf07-99f09d2c84f9?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/4e5f7093-ce35-44c3-8ed9-e47959cd88d5?api-version=2020-04-01 pragma: - no-cache server: @@ -2171,7 +1779,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 202 message: Accepted @@ -2190,9 +1798,9 @@ interactions: - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9b4faf50-28e6-4dee-bf07-99f09d2c84f9?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4e5f7093-ce35-44c3-8ed9-e47959cd88d5?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2202,11 +1810,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9b4faf50-28e6-4dee-bf07-99f09d2c84f9?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4e5f7093-ce35-44c3-8ed9-e47959cd88d5?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:36 GMT + - Wed, 28 Oct 2020 06:43:11 GMT pragma: - no-cache server: @@ -2239,23 +1847,23 @@ interactions: - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"LzUuAN93fSY=","_etag":"\"0000cf3a-0000-0700-0000-5f44bf2d0000\"","_ts":1598340909,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"FB1QAPOs1fQ=","_etag":"\"0000c928-0000-0700-0000-5f9912e50000\"","_ts":1603867365,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '649' + - '750' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:37 GMT + - Wed, 28 Oct 2020 06:43:12 GMT pragma: - no-cache server: @@ -2288,25 +1896,25 @@ interactions: - -g -a -d -n User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"LzUuAN93fSY=","_etag":"\"0000cf3a-0000-0700-0000-5f44bf2d0000\"","_ts":1598340909,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"FB1QAPOs1fQ=","_etag":"\"0000c928-0000-0700-0000-5f9912e50000\"","_ts":1603867365,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '649' + - '750' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:38 GMT + - Wed, 28 Oct 2020 06:43:13 GMT pragma: - no-cache server: @@ -2339,25 +1947,25 @@ interactions: - -g -a -d User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"LzUuAN93fSY=","_etag":"\"0000cf3a-0000-0700-0000-5f44bf2d0000\"","_ts":1598340909,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"FB1QAPOs1fQ=","_etag":"\"0000c928-0000-0700-0000-5f9912e50000\"","_ts":1603867365,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '661' + - '762' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:42 GMT + - Wed, 28 Oct 2020 06:43:16 GMT pragma: - no-cache server: @@ -2390,25 +1998,25 @@ interactions: - -g -a -d -n User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"LzUuAN93fSY=","_etag":"\"0000cf3a-0000-0700-0000-5f44bf2d0000\"","_ts":1598340909,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"FB1QAPOs1fQ=","_etag":"\"0000c928-0000-0700-0000-5f9912e50000\"","_ts":1603867365,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '649' + - '750' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:44 GMT + - Wed, 28 Oct 2020 06:43:17 GMT pragma: - no-cache server: @@ -2443,7 +2051,7 @@ interactions: - -g -a -d -n --yes User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -2453,19 +2061,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4aafd789-fe7a-4e07-b65b-439725dab6c0?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f4f150c-73a3-4815-8384-89a6204e0ce9?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections/cliuqxg5ifsuegr?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections/clifa6dddwjlhds?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:35:44 GMT + - Wed, 28 Oct 2020 06:43:19 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/4aafd789-fe7a-4e07-b65b-439725dab6c0?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/9f4f150c-73a3-4815-8384-89a6204e0ce9?api-version=2020-04-01 pragma: - no-cache server: @@ -2477,7 +2085,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -2496,9 +2104,9 @@ interactions: - -g -a -d -n --yes User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4aafd789-fe7a-4e07-b65b-439725dab6c0?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f4f150c-73a3-4815-8384-89a6204e0ce9?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2508,11 +2116,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4aafd789-fe7a-4e07-b65b-439725dab6c0?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f4f150c-73a3-4815-8384-89a6204e0ce9?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:36:15 GMT + - Wed, 28 Oct 2020 06:43:50 GMT pragma: - no-cache server: @@ -2545,7 +2153,7 @@ interactions: - -g -a -d User-Agent: - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.15.0 Azure-SDK-For-Python AZURECLI/2.11.0 + azure-mgmt-cosmosdb/1.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -2559,11 +2167,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/9abff005-2afc-4de1-b39c-344b9de2cc9c/resourceGroups/cli_test_cosmosdb_mongodb_collectionid5jqblgjok4ykud73ihmjxjajoydgt5sqmdrkx/providers/Microsoft.DocumentDB/databaseAccounts/clipuxfo4txmy7r/mongodbDatabases/clihepdopa6qwu4/collections?api-version=2020-04-01 + - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_mongodb_collectionqyuq2g7gm4uxposyeoo4zzgupft2qdoj32szln2/providers/Microsoft.DocumentDB/databaseAccounts/clismifb5ol4c73/mongodbDatabases/cliims3v5pelbyr/collections?api-version=2020-04-01 content-type: - application/json date: - - Tue, 25 Aug 2020 07:36:17 GMT + - Wed, 28 Oct 2020 06:43:51 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py index 5adc30eeacd..27770db086c 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py @@ -733,9 +733,10 @@ def test_cosmosdb_mongodb_collection(self, resource_group): 'az cosmosdb mongodb collection create -g {rg} -a {acc} -d {db_name} -n {col_name} --shard {shard_key} --analytical-storage-ttl {ttl}').get_output_in_json() assert collection_create["name"] == col_name + indexes_size = len(collection_create["resource"]["indexes"]) collection_update = self.cmd( 'az cosmosdb mongodb collection update -g {rg} -a {acc} -d {db_name} -n {col_name} --idx {indexes} --analytical-storage-ttl {new_ttl}').get_output_in_json() - assert len(collection_update["resource"]["indexes"]) == 1 + assert len(collection_update["resource"]["indexes"]) == indexes_size + 1 collection_show = self.cmd( 'az cosmosdb mongodb collection show -g {rg} -a {acc} -d {db_name} -n {col_name}').get_output_in_json() diff --git a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_account_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_account_mgmt.yaml index 673ea2de97c..b0c07965497 100644 --- a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_account_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_account_mgmt.yaml @@ -18,18 +18,18 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003?api-version=2016-11-01 response: body: - string: '{"properties":{"encryptionConfig":{"type":"ServiceManaged"},"provisioningState":"Creating","state":null,"endpoint":null,"accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"00000000-0000-0000-0000-000000000000","tenantId":"00000000-0000-0000-0000-000000000000"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"encryptionConfig":{"type":"ServiceManaged"},"provisioningState":"Creating","state":null,"endpoint":null,"accountId":"e19b13b7-001c-421e-b17f-ce6680f36924"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"00000000-0000-0000-0000-000000000000","tenantId":"00000000-0000-0000-0000-000000000000"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/447363a0-bd04-47e5-93e0-6ed2793714ec0?api-version=2016-11-01&expanded=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/e19b13b7-001c-421e-b17f-ce6680f36924_0?api-version=2016-11-01 cache-control: - no-cache content-length: @@ -37,11 +37,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:53:47 GMT + - Wed, 28 Oct 2020 07:35:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/operationresults/0?api-version=2016-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/operationresults/0?api-version=2016-11-01 pragma: - no-cache server: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -73,10 +73,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/447363a0-bd04-47e5-93e0-6ed2793714ec0?api-version=2016-11-01&expanded=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/e19b13b7-001c-421e-b17f-ce6680f36924_0?api-version=2016-11-01 response: body: string: '{"status":"InProgress"}' @@ -88,7 +88,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:53:57 GMT + - Wed, 28 Oct 2020 07:35:36 GMT expires: - '-1' pragma: @@ -124,10 +124,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/447363a0-bd04-47e5-93e0-6ed2793714ec0?api-version=2016-11-01&expanded=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/e19b13b7-001c-421e-b17f-ce6680f36924_0?api-version=2016-11-01 response: body: string: '{"status":"Succeeded"}' @@ -139,7 +139,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:28 GMT + - Wed, 28 Oct 2020 07:36:08 GMT expires: - '-1' pragma: @@ -175,13 +175,13 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec","creationTime":"2019-07-08T14:53:48.9165964Z","lastModifiedTime":"2019-07-08T14:53:48.9165964Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"758accf3-b488-4c5b-b30d-d779057a1fac","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000003.azuredatalakestore.net","accountId":"e19b13b7-001c-421e-b17f-ce6680f36924","creationTime":"2020-10-28T07:35:26.3529041Z","lastModifiedTime":"2020-10-28T07:35:26.3529041Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"c80ff1bb-af63-4058-956a-3f3bf1b7ea32","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache @@ -190,7 +190,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:29 GMT + - Wed, 28 Oct 2020 07:36:10 GMT expires: - '-1' pragma: @@ -228,15 +228,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec","creationTime":"2019-07-08T14:53:48.9165964Z","lastModifiedTime":"2019-07-08T14:53:48.9165964Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"758accf3-b488-4c5b-b30d-d779057a1fac","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000003.azuredatalakestore.net","accountId":"e19b13b7-001c-421e-b17f-ce6680f36924","creationTime":"2020-10-28T07:35:26.3529041Z","lastModifiedTime":"2020-10-28T07:35:26.3529041Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"c80ff1bb-af63-4058-956a-3f3bf1b7ea32","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:30 GMT + - Wed, 28 Oct 2020 07:36:11 GMT expires: - '-1' pragma: @@ -285,12 +285,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/enableKeyVault?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/enableKeyVault?api-version=2016-11-01 response: body: string: '{"error":{"code":"InvalidOperation","message":"Operation EnableKeyVault @@ -303,7 +303,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:31 GMT + - Wed, 28 Oct 2020 07:36:13 GMT expires: - '-1' pragma: @@ -339,15 +339,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01 response: body: - string: '{"value":[{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec","creationTime":"2019-07-08T14:53:48.9165964Z","lastModifiedTime":"2019-07-08T14:53:48.9165964Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}]}' + string: '{"value":[{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000003.azuredatalakestore.net","accountId":"e19b13b7-001c-421e-b17f-ce6680f36924","creationTime":"2020-10-28T07:35:26.3529041Z","lastModifiedTime":"2020-10-28T07:35:26.3529041Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"}]}' headers: cache-control: - no-cache @@ -356,7 +356,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:32 GMT + - Wed, 28 Oct 2020 07:36:15 GMT expires: - '-1' pragma: @@ -392,24 +392,24 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01 response: body: - string: '{"value":[{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"cliadls7pe22t3nyuv5bx56d.azuredatalakestore.net","accountId":"3265ba8b-dc29-4bcc-8658-24ac8598b1de","creationTime":"2019-07-08T14:53:47.71825Z","lastModifiedTime":"2019-07-08T14:53:47.71825Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_access4ney45sra4z4gssn3lzeq4sbpv3ls5wa6aniaroiwevrnc2qbcccxul/providers/Microsoft.DataLakeStore/accounts/cliadls7pe22t3nyuv5bx56d","name":"cliadls7pe22t3nyuv5bx56d","type":"Microsoft.DataLakeStore/accounts"},{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec","creationTime":"2019-07-08T14:53:48.9165964Z","lastModifiedTime":"2019-07-08T14:53:48.9165964Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"},{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"cliadlslrk675vgia6dkgrog.azuredatalakestore.net","accountId":"907e2577-bd00-4f33-ac39-014f3ab31869","creationTime":"2019-07-08T14:53:47.5101423Z","lastModifiedTime":"2019-07-08T14:53:47.5101423Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file7jbgmxmsxfyoyypb6nhc3rry357pdrcckedt5m6gcjowthnzcqatjojyu/providers/Microsoft.DataLakeStore/accounts/cliadlslrk675vgia6dkgrog","name":"cliadlslrk675vgia6dkgrog","type":"Microsoft.DataLakeStore/accounts"}]}' + string: '{"value":[{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000003.azuredatalakestore.net","accountId":"e19b13b7-001c-421e-b17f-ce6680f36924","creationTime":"2020-10-28T07:35:26.3529041Z","lastModifiedTime":"2020-10-28T07:35:26.3529041Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"},{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"fengdls.azuredatalakestore.net","accountId":"6db2d649-a526-47f0-8b82-7326a80ceec2","creationTime":"2020-10-28T07:27:13.5313059Z","lastModifiedTime":"2020-10-28T07:27:13.5313059Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.DataLakeStore/accounts/fengdls","name":"fengdls","type":"Microsoft.DataLakeStore/accounts"},{"properties":{"provisioningState":"Succeeded","state":"Active","endpoint":"yemingdatalake.azuredatalakestore.net","accountId":"1c7154c9-59ae-4866-bcc3-e4b04cfb49e5","creationTime":"2020-01-14T02:37:56.1188477Z","lastModifiedTime":"2020-01-14T02:37:56.1188477Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.DataLakeStore/accounts/yemingdatalake","name":"yemingdatalake","type":"Microsoft.DataLakeStore/accounts"}]}' headers: cache-control: - no-cache content-length: - - '1774' + - '1564' content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:33 GMT + - Wed, 28 Oct 2020 07:36:16 GMT expires: - '-1' pragma: @@ -449,15 +449,15 @@ interactions: ParameterSetName: - -g -n --firewall-state --trusted-id-provider-state User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Enabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Enabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec","creationTime":"2019-07-08T14:53:48.9165964Z","lastModifiedTime":"2019-07-08T14:54:34.5080461Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"758accf3-b488-4c5b-b30d-d779057a1fac","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Enabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Enabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000003.azuredatalakestore.net","accountId":"e19b13b7-001c-421e-b17f-ce6680f36924","creationTime":"2020-10-28T07:35:26.3529041Z","lastModifiedTime":"2020-10-28T07:36:19.5554784Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"c80ff1bb-af63-4058-956a-3f3bf1b7ea32","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache @@ -466,7 +466,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:34 GMT + - Wed, 28 Oct 2020 07:36:20 GMT expires: - '-1' pragma: @@ -484,7 +484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -506,15 +506,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Enabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Enabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"447363a0-bd04-47e5-93e0-6ed2793714ec","creationTime":"2019-07-08T14:53:48.9165964Z","lastModifiedTime":"2019-07-08T14:54:34.5080461Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"758accf3-b488-4c5b-b30d-d779057a1fac","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Enabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Enabled","trustedIdProviders":[],"encryptionState":"Enabled","encryptionConfig":{"type":"ServiceManaged"},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000003.azuredatalakestore.net","accountId":"e19b13b7-001c-421e-b17f-ce6680f36924","creationTime":"2020-10-28T07:35:26.3529041Z","lastModifiedTime":"2020-10-28T07:36:19.5554784Z"},"location":"eastus2","identity":{"type":"SystemAssigned","principalId":"c80ff1bb-af63-4058-956a-3f3bf1b7ea32","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003","name":"cliadls000003","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache @@ -523,7 +523,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:35 GMT + - Wed, 28 Oct 2020 07:36:21 GMT expires: - '-1' pragma: @@ -563,15 +563,15 @@ interactions: ParameterSetName: - -g -n --firewall-rule-name --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01?api-version=2016-11-01 response: body: - string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' + string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' headers: cache-control: - no-cache @@ -580,7 +580,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:36 GMT + - Wed, 28 Oct 2020 07:36:23 GMT expires: - '-1' pragma: @@ -598,7 +598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -620,15 +620,15 @@ interactions: ParameterSetName: - -g -n --firewall-rule-name User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01?api-version=2016-11-01 response: body: - string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' + string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' headers: cache-control: - no-cache @@ -637,7 +637,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:37 GMT + - Wed, 28 Oct 2020 07:36:25 GMT expires: - '-1' pragma: @@ -677,15 +677,15 @@ interactions: ParameterSetName: - -g -n --firewall-rule-name --end-ip-address User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01?api-version=2016-11-01 response: body: - string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' + string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' headers: cache-control: - no-cache @@ -694,7 +694,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:39 GMT + - Wed, 28 Oct 2020 07:36:26 GMT expires: - '-1' pragma: @@ -712,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' x-powered-by: - ASP.NET status: @@ -734,15 +734,15 @@ interactions: ParameterSetName: - -g -n --firewall-rule-name User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01?api-version=2016-11-01 response: body: - string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' + string: '{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}' headers: cache-control: - no-cache @@ -751,7 +751,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:39 GMT + - Wed, 28 Oct 2020 07:36:29 GMT expires: - '-1' pragma: @@ -789,15 +789,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules?api-version=2016-11-01 response: body: - string: '{"value":[{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}]}' + string: '{"value":[{"properties":{"startIpAddress":"127.0.0.1","endIpAddress":"127.0.0.3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01","name":"testfirewallrule01","type":"Microsoft.DataLakeStore/accounts/firewallRules"}]}' headers: cache-control: - no-cache @@ -806,7 +806,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:40 GMT + - Wed, 28 Oct 2020 07:36:30 GMT expires: - '-1' pragma: @@ -846,12 +846,12 @@ interactions: ParameterSetName: - -g -n --firewall-rule-name User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules/testfirewallrule01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules/testfirewallrule01?api-version=2016-11-01 response: body: string: '' @@ -861,7 +861,7 @@ interactions: content-length: - '0' date: - - Mon, 08 Jul 2019 14:54:42 GMT + - Wed, 28 Oct 2020 07:36:32 GMT expires: - '-1' pragma: @@ -897,12 +897,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/firewallRules?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/firewallRules?api-version=2016-11-01 response: body: string: '{"value":[]}' @@ -914,7 +914,7 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 14:54:43 GMT + - Wed, 28 Oct 2020 07:36:34 GMT expires: - '-1' pragma: @@ -937,61 +937,61 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/default"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule create + - network vnet subnet show Connection: - keep-alive - Content-Length: - - '175' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --account-name --name --subnet + - -g -n --vnet-name User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET?api-version=2016-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default?api-version=2020-06-01 response: body: - string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET","name":"lewuVNET","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"2bd8da42-8194-48e3-8e63-b41f3f645f36\\\"\",\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 content-length: - - '500' + - '605' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:45 GMT + - Wed, 28 Oct 2020 07:36:35 GMT + etag: + - W/"2bd8da42-8194-48e3-8e63-b41f3f645f36" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 9a9bd8ed-5356-4c07-a089-ecebb6882425 status: code: 200 message: OK @@ -1003,164 +1003,206 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule show + - network vnet subnet create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --account-name --name + - --resource-group --vnet-name --name --address-prefixes User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002?api-version=2020-06-01 response: body: - string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/default","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET","name":"lewuVNET","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + string: "{\r\n \"name\": \"clitest.vn000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002\",\r\n + \ \"etag\": \"W/\\\"2bd8da42-8194-48e3-8e63-b41f3f645f36\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n + \ \"date\": \"2020-10-28T07:35:03Z\"\r\n },\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cac2794b-1111-4da9-ae6e-8788550f8e96\",\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\": \"default\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"2bd8da42-8194-48e3-8e63-b41f3f645f36\\\"\",\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 \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '517' + - '1592' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:47 GMT + - Wed, 28 Oct 2020 07:36:35 GMT + etag: + - W/"2bd8da42-8194-48e3-8e63-b41f3f645f36" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 82c603b8-12c6-4e7a-8071-315e6904d571 status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002", + "location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2020-10-28T07:35:03Z"}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}, + {"properties": {"addressPrefix": "10.0.1.0/24"}, "name": "updatedSubnet"}], + "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": + false}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule update + - network vnet subnet create Connection: - keep-alive + Content-Length: + - '1032' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --account-name --name --subnet + - --resource-group --vnet-name --name --address-prefixes User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET?api-version=2016-11-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002?api-version=2020-06-01 response: body: - string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/default","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET","name":"lewuVNET","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + string: "{\r\n \"name\": \"clitest.vn000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002\",\r\n + \ \"etag\": \"W/\\\"febcd23b-bff7-4921-bd77-af00cbce268c\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n + \ \"date\": \"2020-10-28T07:35:03Z\"\r\n },\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cac2794b-1111-4da9-ae6e-8788550f8e96\",\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\": \"default\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"febcd23b-bff7-4921-bd77-af00cbce268c\\\"\",\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 \"name\": \"updatedSubnet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet\",\r\n + \ \"etag\": \"W/\\\"febcd23b-bff7-4921-bd77-af00cbce268c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.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 \"enableVmProtection\": false\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3818e301-a5d5-4305-931a-7923b156323b?api-version=2020-06-01 cache-control: - no-cache content-length: - - '517' + - '2287' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:48 GMT + - Wed, 28 Oct 2020 07:36:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - f8501876-949d-469b-8bd0-751cb0d821be + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: code: 200 message: OK - request: - body: '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/updatedSubnetId"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule update + - network vnet subnet create Connection: - keep-alive - Content-Length: - - '183' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --account-name --name --subnet + - --resource-group --vnet-name --name --address-prefixes User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET?api-version=2016-11-01 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3818e301-a5d5-4305-931a-7923b156323b?api-version=2020-06-01 response: body: - string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/updatedSubnetId"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET","name":"lewuVNET","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '508' + - '29' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:50 GMT + - Wed, 28 Oct 2020 07:36:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 66dda83c-097f-462a-80bb-fc2ca07a8b39 status: code: 200 message: OK @@ -1172,50 +1214,70 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule show + - network vnet subnet create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --account-name --name + - --resource-group --vnet-name --name --address-prefixes User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002?api-version=2020-06-01 response: body: - string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/updatedSubnetId","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET","name":"lewuVNET","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + string: "{\r\n \"name\": \"clitest.vn000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002\",\r\n + \ \"etag\": \"W/\\\"97cd523e-3e7e-4b8c-8da5-78738533b5b9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n + \ \"date\": \"2020-10-28T07:35:03Z\"\r\n },\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cac2794b-1111-4da9-ae6e-8788550f8e96\",\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\": \"default\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"97cd523e-3e7e-4b8c-8da5-78738533b5b9\\\"\",\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 \"name\": \"updatedSubnet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet\",\r\n + \ \"etag\": \"W/\\\"97cd523e-3e7e-4b8c-8da5-78738533b5b9\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.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 \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '525' + - '2290' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:51 GMT + - Wed, 28 Oct 2020 07:36:41 GMT + etag: + - W/"97cd523e-3e7e-4b8c-8da5-78738533b5b9" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 4e852b45-598b-402e-ab78-f30ce966b2a4 status: code: 200 message: OK @@ -1227,103 +1289,124 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule list + - network vnet subnet update Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --account-name + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default?api-version=2020-06-01 response: body: - string: '{"value":[{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/updatedSubnetId","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET","name":"lewuVNET","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}]}' + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"97cd523e-3e7e-4b8c-8da5-78738533b5b9\\\"\",\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 content-length: - - '537' + - '605' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:52 GMT + - Wed, 28 Oct 2020 07:36:42 GMT + etag: + - W/"97cd523e-3e7e-4b8c-8da5-78738533b5b9" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 0560fe01-c20c-4f36-9b65-3d6c32b8eeef status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", + "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": + "Microsoft.AzureActiveDirectory"}], "delegations": [], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule delete + - network vnet subnet update Connection: - keep-alive Content-Length: - - '0' + - '485' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --account-name --name + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules/lewuVNET?api-version=2016-11-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default?api-version=2020-06-01 response: body: - string: '' + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"e1b59ba3-7d36-4f41-b4b9-516c0b18e2d9\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"service\": \"Microsoft.AzureActiveDirectory\",\r\n \"locations\": + [\r\n \"*\"\r\n ]\r\n }\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: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b299f58-07eb-4c3b-91bc-3700bba51d2d?api-version=2020-06-01 cache-control: - no-cache content-length: - - '0' + - '803' + content-type: + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:54 GMT + - Wed, 28 Oct 2020 07:36:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 81f67af7-d3de-4962-b7e9-dd5057723d16 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 200 message: OK @@ -1335,109 +1418,104 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account network-rule list + - network vnet subnet update Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --account-name + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/virtualNetworkRules?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b299f58-07eb-4c3b-91bc-3700bba51d2d?api-version=2020-06-01 response: body: - string: '{"value":[]}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '12' + - '29' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:55 GMT + - Wed, 28 Oct 2020 07:36:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - bebb68f2-4e87-4ba1-84e1-aba394dee9c0 status: code: 200 message: OK - request: - body: '{"properties": {"idProvider": "https://sts.windows.net/9d5b43a0-804c-4c82-8791-36aca2f72342"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider create + - network vnet subnet update Connection: - keep-alive - Content-Length: - - '94' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --trusted-id-provider-name --id-provider + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01?api-version=2016-11-01 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default?api-version=2020-06-01 response: body: - string: '{"properties":{"idProvider":"https://sts.windows.net/9d5b43a0-804c-4c82-8791-36aca2f72342"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n + \ \"etag\": \"W/\\\"53414b19-6f27-4ecf-b75d-ea7c2c04ba9b\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"service\": \"Microsoft.AzureActiveDirectory\",\r\n \"locations\": + [\r\n \"*\"\r\n ]\r\n }\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: - - '429' + - '805' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:56 GMT + - Wed, 28 Oct 2020 07:36:47 GMT + etag: + - W/"53414b19-6f27-4ecf-b75d-ea7c2c04ba9b" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - b6eea12e-b42f-41ef-9d8f-ce2458f058dc status: code: 200 message: OK @@ -1449,109 +1527,124 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider show + - network vnet subnet update Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --trusted-id-provider-name + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet?api-version=2020-06-01 response: body: - string: '{"properties":{"idProvider":"https://sts.windows.net/9d5b43a0-804c-4c82-8791-36aca2f72342"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + string: "{\r\n \"name\": \"updatedSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet\",\r\n + \ \"etag\": \"W/\\\"53414b19-6f27-4ecf-b75d-ea7c2c04ba9b\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.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}" headers: cache-control: - no-cache content-length: - - '429' + - '617' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:57 GMT + - Wed, 28 Oct 2020 07:36:48 GMT + etag: + - W/"53414b19-6f27-4ecf-b75d-ea7c2c04ba9b" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 01a2ff60-cc87-4f7e-9406-6447ce40b3e6 status: code: 200 message: OK - request: - body: '{"properties": {"idProvider": "https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"}}' + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet", + "properties": {"addressPrefix": "10.0.1.0/24", "serviceEndpoints": [{"service": + "Microsoft.AzureActiveDirectory"}], "delegations": [], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "updatedSubnet"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider update + - network vnet subnet update Connection: - keep-alive Content-Length: - - '94' + - '497' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n --trusted-id-provider-name --id-provider + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01?api-version=2016-11-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet?api-version=2020-06-01 response: body: - string: '{"properties":{"idProvider":"https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + string: "{\r\n \"name\": \"updatedSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet\",\r\n + \ \"etag\": \"W/\\\"ed3ab55d-990a-422d-a112-cb0d77b2728e\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"service\": \"Microsoft.AzureActiveDirectory\",\r\n \"locations\": + [\r\n \"*\"\r\n ]\r\n }\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: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c8335f4e-adc5-472b-8894-29f50b981427?api-version=2020-06-01 cache-control: - no-cache content-length: - - '429' + - '815' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:54:59 GMT + - Wed, 28 Oct 2020 07:36:49 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - a2aced00-60e7-4337-9f6f-1d997d8b2f5e x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1192' status: code: 200 message: OK @@ -1563,50 +1656,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider show + - network vnet subnet update Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --trusted-id-provider-name + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c8335f4e-adc5-472b-8894-29f50b981427?api-version=2020-06-01 response: body: - string: '{"properties":{"idProvider":"https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '429' + - '29' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:55:00 GMT + - Wed, 28 Oct 2020 07:36:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 09766166-cf43-47a7-a04c-9af54dc152c4 status: code: 200 message: OK @@ -1618,87 +1706,93 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider list + - network vnet subnet update Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n + - --service-endpoints --ids User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet?api-version=2020-06-01 response: body: - string: '{"value":[{"properties":{"idProvider":"https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}]}' + string: "{\r\n \"name\": \"updatedSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet\",\r\n + \ \"etag\": \"W/\\\"ddfa5e0d-7697-4bea-b056-f7ede72b4504\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"service\": \"Microsoft.AzureActiveDirectory\",\r\n \"locations\": + [\r\n \"*\"\r\n ]\r\n }\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: - - '441' + - '817' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 14:55:01 GMT + - Wed, 28 Oct 2020 07:36:53 GMT + etag: + - W/"ddfa5e0d-7697-4bea-b056-f7ede72b4504" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 89af9647-46e9-4171-981a-bedd080afc12 status: code: 200 message: OK - request: - body: null + body: '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider delete + - dls account network-rule create Connection: - keep-alive Content-Length: - - '0' + - '259' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n --trusted-id-provider-name + - -g --account-name --name --subnet User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders/testprovider01?api-version=2016-11-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule?api-version=2016-11-01 response: body: - string: '' + string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule","name":"dlsVnetRule","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' headers: cache-control: - no-cache content-length: - - '0' + - '590' + content-type: + - application/json date: - - Mon, 08 Jul 2019 14:55:03 GMT + - Wed, 28 Oct 2020 07:36:55 GMT expires: - '-1' pragma: @@ -1707,12 +1801,16 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -1726,32 +1824,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account trusted-provider list + - dls account network-rule show Connection: - keep-alive Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g --account-name --name User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002/trustedIdProviders?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule?api-version=2016-11-01 response: body: - string: '{"value":[]}' + string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule","name":"dlsVnetRule","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' headers: cache-control: - no-cache content-length: - - '12' + - '607' content-type: - application/json date: - - Mon, 08 Jul 2019 14:55:04 GMT + - Wed, 28 Oct 2020 07:36:57 GMT expires: - '-1' pragma: @@ -1781,32 +1879,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - dls account delete + - dls account network-rule update Connection: - keep-alive - Content-Length: - - '0' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g --account-name --name --subnet User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule?api-version=2016-11-01 response: body: - string: '' + string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule","name":"dlsVnetRule","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' headers: cache-control: - no-cache content-length: - - '0' + - '607' + content-type: + - application/json date: - - Mon, 08 Jul 2019 14:55:07 GMT + - Wed, 28 Oct 2020 07:36:58 GMT expires: - '-1' pragma: @@ -1815,39 +1913,654 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 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 + body: '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - dls account list + - dls account network-rule update Connection: - keep-alive + Content-Length: + - '265' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g + - -g --account-name --name --subnet + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule?api-version=2016-11-01 + response: + body: + string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule","name":"dlsVnetRule","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + headers: + cache-control: + - no-cache + content-length: + - '596' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:01 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-aspnet-version: + - 4.0.30319 + 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: + - dls account network-rule show + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --account-name --name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule?api-version=2016-11-01 + response: + body: + string: '{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule","name":"dlsVnetRule","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}' + headers: + cache-control: + - no-cache + content-length: + - '613' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:03 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-aspnet-version: + - 4.0.30319 + 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: + - dls account network-rule list + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --account-name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules?api-version=2016-11-01 + response: + body: + string: '{"value":[{"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/updatedSubnet","state":"Active"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule","name":"dlsVnetRule","type":"Microsoft.DataLakeStore/accounts/virtualNetworkRules"}]}' + headers: + cache-control: + - no-cache + content-length: + - '625' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:04 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-aspnet-version: + - 4.0.30319 + 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: + - dls account network-rule delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --account-name --name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules/dlsVnetRule?api-version=2016-11-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 28 Oct 2020 07:37:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dls account network-rule list + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --account-name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/virtualNetworkRules?api-version=2016-11-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37: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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"idProvider": "https://sts.windows.net/9d5b43a0-804c-4c82-8791-36aca2f72342"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dls account trusted-provider create + Connection: + - keep-alive + Content-Length: + - '94' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --trusted-id-provider-name --id-provider + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01?api-version=2016-11-01 + response: + body: + string: '{"properties":{"idProvider":"https://sts.windows.net/9d5b43a0-804c-4c82-8791-36aca2f72342"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:10 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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dls account trusted-provider show + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --trusted-id-provider-name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01?api-version=2016-11-01 + response: + body: + string: '{"properties":{"idProvider":"https://sts.windows.net/9d5b43a0-804c-4c82-8791-36aca2f72342"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:12 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-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"idProvider": "https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dls account trusted-provider update + Connection: + - keep-alive + Content-Length: + - '94' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --trusted-id-provider-name --id-provider + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01?api-version=2016-11-01 + response: + body: + string: '{"properties":{"idProvider":"https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:13 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-aspnet-version: + - 4.0.30319 + 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: + - dls account trusted-provider show + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --trusted-id-provider-name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01?api-version=2016-11-01 + response: + body: + string: '{"properties":{"idProvider":"https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:15 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-aspnet-version: + - 4.0.30319 + 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: + - dls account trusted-provider list + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n User-Agent: - - python/3.6.8 (Linux-4.15.0-54-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.8 - msrest_azure/0.6.1 azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders?api-version=2016-11-01 + response: + body: + string: '{"value":[{"properties":{"idProvider":"https://sts.windows.net/fceb709f-96f1-4c65-b06f-2541114bffb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01","name":"testprovider01","type":"Microsoft.DataLakeStore/accounts/trustedIdProviders"}]}' + headers: + cache-control: + - no-cache + content-length: + - '441' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37: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-aspnet-version: + - 4.0.30319 + 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: + - dls account trusted-provider delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --trusted-id-provider-name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders/testprovider01?api-version=2016-11-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 28 Oct 2020 07:37:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + 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: + - dls account trusted-provider list + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/trustedIdProviders?api-version=2016-11-01 response: body: string: '{"value":[]}' @@ -1857,19 +2570,190 @@ interactions: content-length: - '12' content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37: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-aspnet-version: + - 4.0.30319 + 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: + - dls account delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003?api-version=2016-11-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/e19b13b7-001c-421e-b17f-ce6680f36924_11?api-version=2016-11-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 28 Oct 2020 07:37:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts/cliadls000003/operationresults/11?api-version=2016-11-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dls account delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/e19b13b7-001c-421e-b17f-ce6680f36924_11?api-version=2016-11-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Wed, 28 Oct 2020 07:37:37 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-aspnet-version: + - 4.0.30319 + 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: + - dls account list + Connection: + - keep-alive + Content-Type: - application/json; charset=utf-8 + ParameterSetName: + - -g + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_adls_mgmt000001/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json date: - - Mon, 08 Jul 2019 14:55:06 GMT + - Wed, 28 Oct 2020 07:37:39 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-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/test_dls_commands.py b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/test_dls_commands.py index 9abbf6a9a06..1d66eadb235 100644 --- a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/test_dls_commands.py +++ b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/test_dls_commands.py @@ -12,7 +12,7 @@ from shutil import rmtree from msrestazure.azure_exceptions import CloudError -from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, LiveScenarioTest +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, LiveScenarioTest, VirtualNetworkPreparer from azure_devtools.scenario_tests import AllowLargeResponse from knack.util import CLIError @@ -305,12 +305,14 @@ def test_dls_file_mgmt(self): class DataLakeStoreAccountScenarioTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_adls_mgmt') + @VirtualNetworkPreparer() @AllowLargeResponse() def test_dls_account_mgmt(self, resource_group): self.kwargs.update({ 'dls': self.create_random_name('cliadls', 24), 'loc': 'eastus2', + 'updated_subnet': 'updatedSubnet' }) # test create keyvault with default access policy set @@ -384,28 +386,32 @@ def test_dls_account_mgmt(self, resource_group): ]) # test virtual network rule crud + subnet_id = self.cmd('network vnet subnet show -g {rg} -n default --vnet-name {vnet}').get_output_in_json()['id'] + updated_subnet_id = self.cmd('network vnet subnet create --resource-group {rg} --vnet-name {vnet} --name {updated_subnet} --address-prefixes 10.0.1.0/24').get_output_in_json()['id'] + self.kwargs.update({ - 'vnet': 'lewuVNET', - 'subnet_id': '/subscriptions/9e1f0ab2-2f85-49de-9677-9da6f829b914/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/default', - 'subnet': 'default', - 'updated_subnet_id': '/subscriptions/9e1f0ab2-2f85-49de-9677-9da6f829b914/resourceGroups/lewu-rg/providers/Microsoft.Network/virtualNetworks/lewuVNET/subnets/updatedSubnetId', - 'updated_subnet': 'updatedSubnetId' + 'subnet_id': subnet_id, + 'updated_subnet_id': updated_subnet_id, + 'network_rule': 'dlsVnetRule' }) - self.cmd('dls account network-rule create -g {rg} --account-name {dls} --name {vnet} --subnet {subnet_id}') - self.cmd('dls account network-rule show -g {rg} --account-name {dls} --name {vnet}', checks=[ - self.check('name', '{vnet}'), + self.cmd('network vnet subnet update --service-endpoints Microsoft.AzureActiveDirectory --ids "{subnet_id}"') + self.cmd('network vnet subnet update --service-endpoints Microsoft.AzureActiveDirectory --ids "{updated_subnet_id}"') + + self.cmd('dls account network-rule create -g {rg} --account-name {dls} --name {network_rule} --subnet {subnet_id}') + self.cmd('dls account network-rule show -g {rg} --account-name {dls} --name {network_rule}', checks=[ + self.check('name', '{network_rule}'), ]) - self.cmd('dls account network-rule update -g {rg} --account-name {dls} --name {vnet} --subnet {updated_subnet_id}') - self.cmd('dls account network-rule show -g {rg} --account-name {dls} --name {vnet}', checks=[ - self.check('name', '{vnet}'), + self.cmd('dls account network-rule update -g {rg} --account-name {dls} --name {network_rule} --subnet {updated_subnet_id}') + self.cmd('dls account network-rule show -g {rg} --account-name {dls} --name {network_rule}', checks=[ + self.check('name', '{network_rule}'), ]) self.cmd('dls account network-rule list -g {rg} --account-name {dls}', checks=[ self.check('type(@)', 'array'), self.check('length(@)', 1), ]) - self.cmd('dls account network-rule delete -g {rg} --account-name {dls} --name {vnet}') + self.cmd('dls account network-rule delete -g {rg} --account-name {dls} --name {network_rule}') self.cmd('dls account network-rule list -g {rg} --account-name {dls}', checks=[ self.check('type(@)', 'array'), self.check('length(@)', 0), diff --git a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml index 895a98c6425..624f384b17c 100644 --- a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml +++ b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_rest_proxy.yaml @@ -11,64 +11,104 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US 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/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"}]}' + 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/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/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/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/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/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/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/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/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/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"}]}}]}' headers: cache-control: - no-cache content-length: - - '7129' + - '25098' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:25:53 GMT + - Wed, 28 Oct 2020 08:15:03 GMT expires: - '-1' pragma: @@ -98,24 +138,24 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20and%20name%20eq%20%27hdicli000002%27&api-version=2020-06-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceType+eq+%27Microsoft.Storage%2fstorageAccounts%27+and+name+eq+%27hdicli000002%27&api-version=2020-06-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU5qZzFSVUUtIiwibmV4dFJvd0tleSI6IjEhMjI4IU9UWTBRekV3UWtJNFFUWkRORE5DUXpnelJETTJRak14T0VNMlF6Y3pNRFZmUjFKTUxVUkZSa0ZWVEZRNk1rUlRVVXc2TWtSWFJWTlVWVk10VFVsRFVrOVRUMFpVT2pKRlUxRk1PakpHVTBWU1ZrVlNVem95UmtRd09FNDNPVVJIVkVjNk1rWkVRVlJCUWtGVFJWTTZNa1pXTURNd01qRTJNakpCTUVRMVJEUkVOalE1UWtGQlFVWkJNalZHTmpJeU9EY3pPRU5FU0VsV1JVMUZWRUZUVkU5U1JTMVhSVk5VVlZNLSJ9"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '643' + - '349' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:25:54 GMT + - Wed, 28 Oct 2020 08:15:04 GMT expires: - '-1' pragma: @@ -145,77 +185,34 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceType+eq+%27Microsoft.Storage%2fstorageAccounts%27+and+name+eq+%27hdicli000002%27&api-version=2020-06-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU5qZzFSVUUtIiwibmV4dFJvd0tleSI6IjEhMjI4IU9UWTBRekV3UWtJNFFUWkRORE5DUXpnelJETTJRak14T0VNMlF6Y3pNRFZmUjFKTUxVUkZSa0ZWVEZRNk1rUlRVVXc2TWtSWFJWTlVWVk10VFVsRFVrOVRUMFpVT2pKRlUxRk1PakpHVTBWU1ZrVlNVem95UmtRd09FNDNPVVJIVkVjNk1rWkVRVlJCUWtGVFJWTTZNa1pXTURNd01qRTJNakpCTUVRMVJEUkVOalE1UWtGQlFVWkJNalZHTmpJeU9EY3pPRU5FU0VsV1JVMUZWRUZUVkU5U1JTMVhSVk5VVlZNLSJ9 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2019-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceType+eq+%27Microsoft.Storage%2fstorageAccounts%27+and+name+eq+%27hdicli000002%27&api-version=2020-06-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU5qZzFSVUUtIiwibmV4dFJvd0tleSI6IjEhMTc2IU9UWTBRekV3UWtJNFFUWkRORE5DUXpnelJETTJRak14T0VNMlF6Y3pNRFZmUjFKTUxVdEJVbFJJU1VzNk5VWlVSVk5VVWtjeE9qVkdSVUV0VFVsRFVrOVRUMFpVT2pKRlUxUlBVa0ZIUlRveVJsTlVUMUpCUjBWQlEwTlBWVTVVVXpveVJrdEJWRWhKUzBWQlUxUkJVMGxCVTFSUFVrRkhSUzFGUVZOVVFWTkpRUS0tIn0%3d"}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:13:43.7636433Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:13:43.7636433Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-28T08:13:43.7167050Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '907' + - '1193' content-type: - - application/json; charset=utf-8 - date: - - Wed, 18 Dec 2019 01:25: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: null - headers: - Accept: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - hdinsight create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container - -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id - --kafka-client-group-name -v --component-version --location - User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceType+eq+%27Microsoft.Storage%2fstorageAccounts%27+and+name+eq+%27hdicli000002%27&api-version=2020-06-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU5qZzFSVUUtIiwibmV4dFJvd0tleSI6IjEhMTc2IU9UWTBRekV3UWtJNFFUWkRORE5DUXpnelJETTJRak14T0VNMlF6Y3pNRFZmUjFKTUxVdEJVbFJJU1VzNk5VWlVSVk5VVWtjeE9qVkdSVUV0VFVsRFVrOVRUMFpVT2pKRlUxUlBVa0ZIUlRveVJsTlVUMUpCUjBWQlEwTlBWVTVVVXpveVJrdEJWRWhKUzBWQlUxUkJVMGxCVTFSUFVrRkhSUzFGUVZOVVFWTkpRUS0tIn0%3d - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:25:55 GMT + - Wed, 28 Oct 2020 08:15:04 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: @@ -234,29 +231,31 @@ interactions: - hdinsight create Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2019-06-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-18T01:24:32.7214477Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-18T01:24:32.7214477Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-18T01:24:32.6589392Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '1107' + - '288' content-type: - application/json date: - - Wed, 18 Dec 2019 01:25:56 GMT + - Wed, 28 Oct 2020 08:15:05 GMT expires: - '-1' pragma: @@ -271,11 +270,28 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' status: code: 200 message: OK - request: - body: null + body: '{"location": "southcentralus", "properties": {"clusterVersion": "4.0", + "osType": "Linux", "clusterDefinition": {"kind": "kafka", "componentVersion": + {"kafka": "2.1"}, "configurations": {"gateway": {"restAuthCredential.isEnabled": + "true", "restAuthCredential.username": "admin", "restAuthCredential.password": + "Password1!"}}}, "kafkaRestProperties": {"clientGroupInfo": {"groupName": "KafakaRestProperties", + "groupId": "7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}, "dataDisksGroups": [{"disksPerNode": + 4}]}, {"name": "kafkamanagementnode", "targetInstanceCount": 2, "hardwareProfile": + {"vmSize": "Standard_D4_v2"}, "osProfile": {"linuxOperatingSystemProfile": {"username": + "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": + [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": + "default", "key": "veryFakedStorageAccountKey==", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002"}]}}}' headers: Accept: - application/json @@ -286,36 +302,41 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '1519' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-storage/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2019-06-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"South + Central US","etag":"25a35555-4520-4b53-9dcf-1355a5ef1f42","tags":null,"properties":{"clusterVersion":"4.0.2000.1","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2009301626.json","kind":"kafka","componentVersion":{"kafka":"2.1"}},"clusterId":"c22d934719044fa29c1f31015c343ce9","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"kafkamanagementnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-28T08:15:22.79","quotaInfo":{"coresUsed":36},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"kafkaRestProperties":{"clientGroupInfo":{"groupName":"KafakaRestProperties","groupId":"7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"},"configurationOverride":null},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: + azure-asyncoperation: + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '288' + - '2187' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:25:56 GMT + - Wed, 28 Oct 2020 08:15:25 GMT + etag: + - '"25a35555-4520-4b53-9dcf-1355a5ef1f42"' 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: @@ -324,28 +345,17 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-hdi-clusteruri: + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdicli-nbgha/providers/Microsoft.HDInsight/clusters/hdicli-wm7rrmtcf?api-version=2018-06-01-preview + x-ms-hdi-served-by: + - global x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK - request: - body: 'b''{"location": "southcentralus", "properties": {"clusterVersion": "4.0", - "osType": "Linux", "clusterDefinition": {"kind": "kafka", "componentVersion": - {"kafka": "2.1"}, "configurations": {"gateway": {"restAuthCredential.isEnabled": - "true", "restAuthCredential.username": "admin", "restAuthCredential.password": - "Password1!"}}}, "kafkaRestProperties": {"clientGroupInfo": {"groupName": "KafakaRestProperties", - "groupId": "7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"}}, "computeProfile": {"roles": - [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": - "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, - "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}, "dataDisksGroups": [{"disksPerNode": - 4}]}, {"name": "kafkamanagementnode", "targetInstanceCount": 2, "hardwareProfile": - {"vmSize": "Standard_D4_v2"}, "osProfile": {"linuxOperatingSystemProfile": {"username": - "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": - [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "veryFakedStorageAccountKey=="}]}}}''' + body: null headers: Accept: - application/json @@ -355,38 +365,27 @@ interactions: - hdinsight create Connection: - keep-alive - Content-Length: - - '1353' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"South - Central US","etag":"584e7915-570b-40ac-bbd3-85aabc5b2187","tags":null,"properties":{"clusterVersion":"4.0.1000.1","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-4.0.1000.1.1911281747.json","kind":"kafka","componentVersion":{"kafka":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"kafkamanagementnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-12-18T01:26:08.61","quotaInfo":{"coresUsed":36},"tier":"standard","kafkaRestProperties":{"clientGroupInfo":{"groupName":"KafakaRestProperties","groupId":"7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"},"configurationOverride":null},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true}]}}}' + string: '{"status":"InProgress"}' headers: - azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1739' + - '23' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:26:10 GMT - etag: - - '"584e7915-570b-40ac-bbd3-85aabc5b2187"' + - Wed, 28 Oct 2020 08:15:57 GMT expires: - '-1' pragma: @@ -399,12 +398,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-4fhlz/providers/Microsoft.HDInsight/clusters/hdicli-etdzw4rmg?api-version=2018-06-01-preview x-ms-hdi-served-by: - - southcentralus - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - global status: code: 200 message: OK @@ -424,8 +419,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -439,7 +434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:26:42 GMT + - Wed, 28 Oct 2020 08:16:27 GMT expires: - '-1' pragma: @@ -453,7 +448,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -473,8 +468,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -488,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:27:12 GMT + - Wed, 28 Oct 2020 08:16:58 GMT expires: - '-1' pragma: @@ -502,7 +497,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -522,8 +517,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -537,7 +532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:27:44 GMT + - Wed, 28 Oct 2020 08:17:29 GMT expires: - '-1' pragma: @@ -551,7 +546,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -571,8 +566,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -586,7 +581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:28:14 GMT + - Wed, 28 Oct 2020 08:17:59 GMT expires: - '-1' pragma: @@ -600,7 +595,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -620,8 +615,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -635,7 +630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:28:47 GMT + - Wed, 28 Oct 2020 08:18:30 GMT expires: - '-1' pragma: @@ -649,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -669,8 +664,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -684,7 +679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:29:18 GMT + - Wed, 28 Oct 2020 08:19:00 GMT expires: - '-1' pragma: @@ -698,7 +693,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -718,8 +713,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -733,7 +728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:29:48 GMT + - Wed, 28 Oct 2020 08:19:31 GMT expires: - '-1' pragma: @@ -747,7 +742,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -767,8 +762,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -782,7 +777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:30:19 GMT + - Wed, 28 Oct 2020 08:20:01 GMT expires: - '-1' pragma: @@ -796,7 +791,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -816,8 +811,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -831,7 +826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:30:51 GMT + - Wed, 28 Oct 2020 08:20:32 GMT expires: - '-1' pragma: @@ -845,7 +840,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -865,8 +860,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -880,7 +875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:31:22 GMT + - Wed, 28 Oct 2020 08:21:04 GMT expires: - '-1' pragma: @@ -894,7 +889,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -914,8 +909,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -929,7 +924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:31:52 GMT + - Wed, 28 Oct 2020 08:21:34 GMT expires: - '-1' pragma: @@ -943,7 +938,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -963,8 +958,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -978,7 +973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:32:23 GMT + - Wed, 28 Oct 2020 08:22:06 GMT expires: - '-1' pragma: @@ -992,7 +987,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1012,8 +1007,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,7 +1022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:32:55 GMT + - Wed, 28 Oct 2020 08:22:36 GMT expires: - '-1' pragma: @@ -1041,7 +1036,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1061,8 +1056,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1076,7 +1071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:33:26 GMT + - Wed, 28 Oct 2020 08:23:07 GMT expires: - '-1' pragma: @@ -1090,7 +1085,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1110,8 +1105,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1125,7 +1120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:33:56 GMT + - Wed, 28 Oct 2020 08:23:38 GMT expires: - '-1' pragma: @@ -1139,7 +1134,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1159,8 +1154,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1174,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:34:27 GMT + - Wed, 28 Oct 2020 08:24:08 GMT expires: - '-1' pragma: @@ -1188,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1208,8 +1203,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1223,7 +1218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:35:00 GMT + - Wed, 28 Oct 2020 08:24:38 GMT expires: - '-1' pragma: @@ -1237,7 +1232,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1257,8 +1252,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1272,7 +1267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:35:30 GMT + - Wed, 28 Oct 2020 08:25:09 GMT expires: - '-1' pragma: @@ -1286,7 +1281,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1306,8 +1301,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1321,7 +1316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:36:01 GMT + - Wed, 28 Oct 2020 08:25:40 GMT expires: - '-1' pragma: @@ -1335,7 +1330,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1355,8 +1350,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1370,7 +1365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:36:32 GMT + - Wed, 28 Oct 2020 08:26:12 GMT expires: - '-1' pragma: @@ -1384,7 +1379,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1404,8 +1399,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1419,7 +1414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:37:03 GMT + - Wed, 28 Oct 2020 08:26:42 GMT expires: - '-1' pragma: @@ -1433,7 +1428,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1453,8 +1448,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1468,7 +1463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:37:33 GMT + - Wed, 28 Oct 2020 08:27:12 GMT expires: - '-1' pragma: @@ -1482,7 +1477,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1502,8 +1497,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1517,7 +1512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:38:05 GMT + - Wed, 28 Oct 2020 08:27:43 GMT expires: - '-1' pragma: @@ -1531,7 +1526,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1551,8 +1546,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1566,7 +1561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:38:36 GMT + - Wed, 28 Oct 2020 08:28:14 GMT expires: - '-1' pragma: @@ -1580,7 +1575,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1600,8 +1595,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1615,7 +1610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:39:06 GMT + - Wed, 28 Oct 2020 08:28:45 GMT expires: - '-1' pragma: @@ -1629,7 +1624,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1649,8 +1644,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1664,7 +1659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:39:37 GMT + - Wed, 28 Oct 2020 08:29:15 GMT expires: - '-1' pragma: @@ -1678,7 +1673,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1698,8 +1693,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1713,7 +1708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:40:08 GMT + - Wed, 28 Oct 2020 08:29:46 GMT expires: - '-1' pragma: @@ -1727,7 +1722,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1747,8 +1742,8 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1762,7 +1757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:40:40 GMT + - Wed, 28 Oct 2020 08:30:16 GMT expires: - '-1' pragma: @@ -1776,7 +1771,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1796,23 +1791,23 @@ interactions: -t --workernode-data-disks-per-node --kafka-management-node-size --kafka-client-group-id --kafka-client-group-name -v --component-version --location User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"South - Central US","etag":"584e7915-570b-40ac-bbd3-85aabc5b2187","tags":null,"properties":{"clusterVersion":"4.0.1000.1","clusterHdpVersion":"3.1.2.2-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-4.0.1000.1.1911281747.json","kind":"kafka","componentVersion":{"kafka":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"kafkamanagementnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_A2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-12-18T01:26:08.61","quotaInfo":{"coresUsed":36},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443},{"name":"KafkaRestProxyPublicEndpoint","protocol":"TCP","location":"hdicli-000003-kafkarest.azurehdinsight.net","port":443}],"tier":"standard","kafkaRestProperties":{"clientGroupInfo":{"groupName":"KafakaRestProperties","groupId":"7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"},"configurationOverride":null},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true}]}}}' + Central US","etag":"25a35555-4520-4b53-9dcf-1355a5ef1f42","tags":null,"properties":{"clusterVersion":"4.0.2000.1","clusterHdpVersion":"4.1.1.2","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2009301626.json","kind":"kafka","componentVersion":{"kafka":"2.1"}},"clusterId":"c22d934719044fa29c1f31015c343ce9","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"kafkamanagementnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-28T08:15:22.79","quotaInfo":{"coresUsed":36},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443},{"name":"KafkaRestProxyPublicEndpoint","protocol":"TCP","location":"hdicli-000003-kafkarest.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"kafkaRestProperties":{"clientGroupInfo":{"groupName":"KafakaRestProperties","groupId":"7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"},"configurationOverride":null},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2275' + - '2721' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:40:41 GMT + - Wed, 28 Oct 2020 08:30:17 GMT expires: - '-1' pragma: @@ -1826,7 +1821,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK @@ -1844,8 +1839,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.2 azure-mgmt-hdinsight/1.3.0 - Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1853,16 +1848,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"South - Central US","etag":"584e7915-570b-40ac-bbd3-85aabc5b2187","tags":null,"properties":{"clusterVersion":"4.0.1000.1","clusterHdpVersion":"3.1.2.2-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-4.0.1000.1.1911281747.json","kind":"kafka","componentVersion":{"kafka":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"kafkamanagementnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_A2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-12-18T01:26:08.61","quotaInfo":{"coresUsed":36},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443},{"name":"KafkaRestProxyPublicEndpoint","protocol":"TCP","location":"hdicli-000003-kafkarest.azurehdinsight.net","port":443}],"tier":"standard","kafkaRestProperties":{"clientGroupInfo":{"groupName":"KafakaRestProperties","groupId":"7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"},"configurationOverride":null},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true}]}}}' + Central US","etag":"25a35555-4520-4b53-9dcf-1355a5ef1f42","tags":null,"properties":{"clusterVersion":"4.0.2000.1","clusterHdpVersion":"4.1.1.2","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2009301626.json","kind":"kafka","componentVersion":{"kafka":"2.1"}},"clusterId":"c22d934719044fa29c1f31015c343ce9","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"kafkamanagementnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-28T08:15:22.79","quotaInfo":{"coresUsed":36},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443},{"name":"KafkaRestProxyPublicEndpoint","protocol":"TCP","location":"hdicli-000003-kafkarest.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"kafkaRestProperties":{"clientGroupInfo":{"groupName":"KafakaRestProperties","groupId":"7bef90fa-0aa3-4bb4-b4d2-2ae7c14cfe41"},"configurationOverride":null},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2275' + - '2721' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Dec 2019 01:40:44 GMT + - Wed, 28 Oct 2020 08:30:20 GMT expires: - '-1' pragma: @@ -1876,7 +1871,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-served-by: - - southcentralus + - global status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml index 9e0221a29e9..8895c3a2e3e 100644 --- a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml @@ -14,8 +14,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:03:57 GMT + - Wed, 28 Oct 2020 08:36:00 GMT expires: - '-1' pragma: @@ -60,15 +60,15 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T16:00:26.0332282Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T16:00:26.0332282Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-14T16:00:25.9551020Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:34:41.0596665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:34:41.0596665Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-28T08:34:40.9502872Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jul 2020 16:03:58 GMT + - Wed, 28 Oct 2020 08:36:01 GMT expires: - '-1' pragma: @@ -112,8 +112,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -129,7 +129,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jul 2020 16:03:58 GMT + - Wed, 28 Oct 2020 08:36:02 GMT expires: - '-1' pragma: @@ -150,17 +150,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", - "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": - {"gateway": {"restAuthCredential.username": "admin", "restAuthCredential.isEnabled": - "true", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + body: '{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": + "Linux", "clusterDefinition": {"kind": "spark", "configurations": {"gateway": + {"restAuthCredential.username": "admin", "restAuthCredential.isEnabled": "true", + "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "veryFakedStorageAccountKey=="}]}}}''' + "default", "key": "veryFakedStorageAccountKey==", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002"}]}}}' headers: Accept: - application/json @@ -171,15 +171,78 @@ interactions: Connection: - keep-alive Content-Length: - - '931' + - '1097' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview + response: + body: + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.HDInsight'' within the specified time period."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '147' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 08:36:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + status: + code: 504 + message: Gateway Timeout +- request: + body: '{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": + "Linux", "clusterDefinition": {"kind": "spark", "configurations": {"gateway": + {"restAuthCredential.username": "admin", "restAuthCredential.isEnabled": "true", + "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": + [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": + "default", "key": "veryFakedStorageAccountKey==", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002"}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - hdinsight create + Connection: + - keep-alive + Content-Length: + - '1097' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container + --cluster-configurations + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -187,20 +250,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East - US 2","etag":"041c18c0-8372-49f5-86f7-2513fdf2ec4c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json","kind":"spark","componentVersion":{"spark":"2.3"}},"clusterId":"655dde0ddd274f8db1fe71c844d82f7a","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-07-14T16:04:12","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + US 2","etag":"738d2767-8ea3-4877-80b6-c3b89ec9027c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2009301626.json","kind":"spark","componentVersion":{"spark":"2.3"}},"clusterId":"64abd3aa1b044f9087534529c39d8eba","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-28T08:36:40.943","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1483' + - '1740' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:04:14 GMT + - Wed, 28 Oct 2020 08:36:43 GMT etag: - - '"041c18c0-8372-49f5-86f7-2513fdf2ec4c"' + - '"738d2767-8ea3-4877-80b6-c3b89ec9027c"' expires: - '-1' pragma: @@ -214,11 +277,11 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdicli-sugjo/providers/Microsoft.HDInsight/clusters/hdicli-l3eyckylv?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdicli-jweii/providers/Microsoft.HDInsight/clusters/hdicli-adqpivaif?api-version=2018-06-01-preview x-ms-hdi-served-by: - global x-ms-ratelimit-remaining-subscription-writes: - - '1178' + - '1199' status: code: 200 message: OK @@ -237,8 +300,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -252,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:04:46 GMT + - Wed, 28 Oct 2020 08:37:15 GMT expires: - '-1' pragma: @@ -285,8 +348,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -300,7 +363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:05:16 GMT + - Wed, 28 Oct 2020 08:37:47 GMT expires: - '-1' pragma: @@ -333,8 +396,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -348,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:05:47 GMT + - Wed, 28 Oct 2020 08:38:17 GMT expires: - '-1' pragma: @@ -381,8 +444,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -396,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:06:17 GMT + - Wed, 28 Oct 2020 08:38:48 GMT expires: - '-1' pragma: @@ -429,8 +492,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -444,7 +507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:06:48 GMT + - Wed, 28 Oct 2020 08:39:18 GMT expires: - '-1' pragma: @@ -477,8 +540,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -492,7 +555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:07:20 GMT + - Wed, 28 Oct 2020 08:39:48 GMT expires: - '-1' pragma: @@ -525,8 +588,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -540,7 +603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:07:51 GMT + - Wed, 28 Oct 2020 08:40:19 GMT expires: - '-1' pragma: @@ -573,8 +636,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -588,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:08:21 GMT + - Wed, 28 Oct 2020 08:40:50 GMT expires: - '-1' pragma: @@ -621,8 +684,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -636,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:08:52 GMT + - Wed, 28 Oct 2020 08:41:20 GMT expires: - '-1' pragma: @@ -669,8 +732,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -684,7 +747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:09:22 GMT + - Wed, 28 Oct 2020 08:41:51 GMT expires: - '-1' pragma: @@ -717,8 +780,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -732,7 +795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:09:53 GMT + - Wed, 28 Oct 2020 08:42:21 GMT expires: - '-1' pragma: @@ -765,8 +828,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -780,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:10:24 GMT + - Wed, 28 Oct 2020 08:42:51 GMT expires: - '-1' pragma: @@ -813,8 +876,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -828,7 +891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:10:54 GMT + - Wed, 28 Oct 2020 08:43:23 GMT expires: - '-1' pragma: @@ -861,8 +924,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -876,7 +939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:11:24 GMT + - Wed, 28 Oct 2020 08:43:55 GMT expires: - '-1' pragma: @@ -909,8 +972,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -924,7 +987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:11:56 GMT + - Wed, 28 Oct 2020 08:44:25 GMT expires: - '-1' pragma: @@ -957,8 +1020,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -972,7 +1035,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:12:27 GMT + - Wed, 28 Oct 2020 08:44:55 GMT expires: - '-1' pragma: @@ -1005,8 +1068,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1020,7 +1083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:12:57 GMT + - Wed, 28 Oct 2020 08:45:26 GMT expires: - '-1' pragma: @@ -1053,8 +1116,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1068,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:13:28 GMT + - Wed, 28 Oct 2020 08:45:56 GMT expires: - '-1' pragma: @@ -1101,8 +1164,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1116,7 +1179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:13:59 GMT + - Wed, 28 Oct 2020 08:46:28 GMT expires: - '-1' pragma: @@ -1149,8 +1212,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1164,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:14:30 GMT + - Wed, 28 Oct 2020 08:46:58 GMT expires: - '-1' pragma: @@ -1197,8 +1260,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1212,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:15:01 GMT + - Wed, 28 Oct 2020 08:47:29 GMT expires: - '-1' pragma: @@ -1245,8 +1308,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1260,7 +1323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:15:31 GMT + - Wed, 28 Oct 2020 08:47:59 GMT expires: - '-1' pragma: @@ -1293,8 +1356,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1308,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:16:02 GMT + - Wed, 28 Oct 2020 08:48:30 GMT expires: - '-1' pragma: @@ -1341,8 +1404,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1356,7 +1419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:16:32 GMT + - Wed, 28 Oct 2020 08:49:06 GMT expires: - '-1' pragma: @@ -1389,8 +1452,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1404,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:17:03 GMT + - Wed, 28 Oct 2020 08:49:37 GMT expires: - '-1' pragma: @@ -1437,8 +1500,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1452,7 +1515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:17:34 GMT + - Wed, 28 Oct 2020 08:50:07 GMT expires: - '-1' pragma: @@ -1485,8 +1548,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1500,7 +1563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:18:06 GMT + - Wed, 28 Oct 2020 08:50:39 GMT expires: - '-1' pragma: @@ -1533,8 +1596,8 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1548,7 +1611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:18:36 GMT + - Wed, 28 Oct 2020 08:51:10 GMT expires: - '-1' pragma: @@ -1581,23 +1644,23 @@ interactions: - -n -g -l -p -t --no-validation-timeout --storage-account --storage-container --cluster-configurations User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East - US 2","etag":"041c18c0-8372-49f5-86f7-2513fdf2ec4c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3025-2","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json","kind":"spark","componentVersion":{"spark":"2.3"}},"clusterId":"655dde0ddd274f8db1fe71c844d82f7a","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_A2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-07-14T16:04:12","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + US 2","etag":"738d2767-8ea3-4877-80b6-c3b89ec9027c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2009301626.json","kind":"spark","componentVersion":{"spark":"2.3"}},"clusterId":"64abd3aa1b044f9087534529c39d8eba","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-28T08:36:40.943","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1895' + - '2152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:18:36 GMT + - Wed, 28 Oct 2020 08:51:10 GMT expires: - '-1' pragma: @@ -1629,8 +1692,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-hdinsight/1.5.1 - Azure-SDK-For-Python AZURECLI/2.9.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1638,16 +1701,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East - US 2","etag":"041c18c0-8372-49f5-86f7-2513fdf2ec4c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3025-2","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json","kind":"spark","componentVersion":{"spark":"2.3"}},"clusterId":"655dde0ddd274f8db1fe71c844d82f7a","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_A2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-07-14T16:04:12","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + US 2","etag":"738d2767-8ea3-4877-80b6-c3b89ec9027c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2009301626.json","kind":"spark","componentVersion":{"spark":"2.3"}},"clusterId":"64abd3aa1b044f9087534529c39d8eba","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-28T08:36:40.943","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdicli000002.blob.core.windows.net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","msiResourceId":null,"key":null,"fileSystem":null,"container":"default","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1895' + - '2152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jul 2020 16:18:38 GMT + - Wed, 28 Oct 2020 08:51:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py index f30e340536a..a6fb2033e8e 100644 --- a/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py +++ b/src/azure-cli/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py @@ -48,8 +48,9 @@ def test_hdinsight_cluster_kafka(self, storage_account_info): ) # Uses 'rg' kwarg - @ResourceGroupPreparer(name_prefix='hdicli-', location=location, random_name_length=12) - @StorageAccountPreparer(name_prefix='hdicli', location=location, parameter_name='storage_account') + # _rest_proxy_arguments() will override location to southcentralus, so use this location for rg and sa + @ResourceGroupPreparer(name_prefix='hdicli-', location='southcentralus', random_name_length=12) + @StorageAccountPreparer(name_prefix='hdicli', location='southcentralus', parameter_name='storage_account') def test_hdinsight_cluster_kafka_with_rest_proxy(self, storage_account_info): self._create_hdinsight_cluster( HDInsightClusterTests._wasb_arguments(storage_account_info), diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml index b903c3ac518..eece5c20b58 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml @@ -13,25 +13,24 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-storage/11.1.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.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/ADU/providers/Microsoft.Storage/storageAccounts/andbuctestadu","name":"andbuctestadu","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-04T22:46:12.4529458Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-04T22:46:12.4529458Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-04T22:46:12.3904552Z","primaryEndpoints":{"blob":"https://andbuctestadu.blob.core.windows.net/","queue":"https://andbuctestadu.queue.core.windows.net/","table":"https://andbuctestadu.table.core.windows.net/","file":"https://andbuctestadu.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/testiotextstor0","name":"testiotextstor0","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"Logging, - Metrics, AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-19T00:06:41.0740705Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-19T00:06:41.0740705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-19T00:06:41.0115264Z","primaryEndpoints":{"dfs":"https://testiotextstor0.dfs.core.windows.net/","web":"https://testiotextstor0.z20.web.core.windows.net/","blob":"https://testiotextstor0.blob.core.windows.net/","queue":"https://testiotextstor0.queue.core.windows.net/","table":"https://testiotextstor0.table.core.windows.net/","file":"https://testiotextstor0.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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-08-21T21:23:15.2980429Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-21T21:23:15.2980429Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-21T21:23:15.2355930Z","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":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4a386d5eaea90x441ax826","name":"cs4a386d5eaea90x441ax826","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":"2019-11-25T17:05:48.4365854Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-25T17:05:48.4365854Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-25T17:05:48.3897448Z","primaryEndpoints":{"dfs":"https://cs4a386d5eaea90x441ax826.dfs.core.windows.net/","web":"https://cs4a386d5eaea90x441ax826.z22.web.core.windows.net/","blob":"https://cs4a386d5eaea90x441ax826.blob.core.windows.net/","queue":"https://cs4a386d5eaea90x441ax826.queue.core.windows.net/","table":"https://cs4a386d5eaea90x441ax826.table.core.windows.net/","file":"https://cs4a386d5eaea90x441ax826.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/azcliintteststorage","name":"azcliintteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"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-18T00:47:50.5253938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-18T00:47:50.4473020Z","primaryEndpoints":{"dfs":"https://azcliintteststorage.dfs.core.windows.net/","web":"https://azcliintteststorage.z5.web.core.windows.net/","blob":"https://azcliintteststorage.blob.core.windows.net/","queue":"https://azcliintteststorage.queue.core.windows.net/","table":"https://azcliintteststorage.table.core.windows.net/","file":"https://azcliintteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azcliintteststorage-secondary.dfs.core.windows.net/","web":"https://azcliintteststorage-secondary.z5.web.core.windows.net/","blob":"https://azcliintteststorage-secondary.blob.core.windows.net/","queue":"https://azcliintteststorage-secondary.queue.core.windows.net/","table":"https://azcliintteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/mytsistorage","name":"mytsistorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-30T02:41:14.3208106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-30T02:41:14.3208106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-30T02:41:14.2428329Z","primaryEndpoints":{"dfs":"https://mytsistorage.dfs.core.windows.net/","web":"https://mytsistorage.z5.web.core.windows.net/","blob":"https://mytsistorage.blob.core.windows.net/","queue":"https://mytsistorage.queue.core.windows.net/","table":"https://mytsistorage.table.core.windows.net/","file":"https://mytsistorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkstoragetest","name":"rkstoragetest","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkstoragetest/privateEndpointConnections/rkstoragetest.d3022f24-e7d2-4622-907a-1b0f713c271e","name":"rkstoragetest.d3022f24-e7d2-4622-907a-1b0f713c271e","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Network/privateEndpoints/upx-hub-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T19:12:01.2738834Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T19:12:01.2738834Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-10T19:12:01.2113542Z","primaryEndpoints":{"dfs":"https://rkstoragetest.dfs.core.windows.net/","web":"https://rkstoragetest.z5.web.core.windows.net/","blob":"https://rkstoragetest.blob.core.windows.net/","queue":"https://rkstoragetest.queue.core.windows.net/","table":"https://rkstoragetest.table.core.windows.net/","file":"https://rkstoragetest.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibeta","name":"azureclibeta","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-06-11T10:11:09.8011543Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:11:09.8011543Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:11:09.7230107Z","primaryEndpoints":{"web":"https://azureclibeta.z13.web.core.windows.net/","blob":"https://azureclibeta.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"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":{"privateEndpointConnections":[],"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":{"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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/fystac","name":"fystac","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-04-08T03:10:13.4426715Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T03:10:13.3645539Z","primaryEndpoints":{"dfs":"https://fystac.dfs.core.windows.net/","web":"https://fystac.z13.web.core.windows.net/","blob":"https://fystac.blob.core.windows.net/","queue":"https://fystac.queue.core.windows.net/","table":"https://fystac.table.core.windows.net/","file":"https://fystac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fystac-secondary.dfs.core.windows.net/","web":"https://fystac-secondary.z13.web.core.windows.net/","blob":"https://fystac-secondary.blob.core.windows.net/","queue":"https://fystac-secondary.queue.core.windows.net/","table":"https://fystac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"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/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenadls","name":"qianwenadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-01T10:11:05.9576622Z","primaryEndpoints":{"dfs":"https://qianwenadls.dfs.core.windows.net/","web":"https://qianwenadls.z13.web.core.windows.net/","blob":"https://qianwenadls.blob.core.windows.net/","queue":"https://qianwenadls.queue.core.windows.net/","table":"https://qianwenadls.table.core.windows.net/","file":"https://qianwenadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenadls-secondary.dfs.core.windows.net/","web":"https://qianwenadls-secondary.z13.web.core.windows.net/","blob":"https://qianwenadls-secondary.blob.core.windows.net/","queue":"https://qianwenadls-secondary.queue.core.windows.net/","table":"https://qianwenadls-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":false,"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":false,"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrga660","name":"storageaccountbimrga660","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-10-20T06:02:39.6589021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-20T06:02:39.6589021Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-20T06:02:39.5495189Z","primaryEndpoints":{"blob":"https://storageaccountbimrga660.blob.core.windows.net/","queue":"https://storageaccountbimrga660.queue.core.windows.net/","table":"https://storageaccountbimrga660.table.core.windows.net/","file":"https://storageaccountbimrga660.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrgb440","name":"storageaccountbimrgb440","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-10-20T06:18:25.3806957Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-20T06:18:25.3806957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-20T06:18:25.2557104Z","primaryEndpoints":{"blob":"https://storageaccountbimrgb440.blob.core.windows.net/","queue":"https://storageaccountbimrgb440.queue.core.windows.net/","table":"https://storageaccountbimrgb440.table.core.windows.net/","file":"https://storageaccountbimrgb440.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yueshi/providers/Microsoft.Storage/storageAccounts/yueshi4debug","name":"yueshi4debug","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-14T09:43:28.1308789Z","primaryEndpoints":{"dfs":"https://yueshi4debug.dfs.core.windows.net/","web":"https://yueshi4debug.z13.web.core.windows.net/","blob":"https://yueshi4debug.blob.core.windows.net/","queue":"https://yueshi4debug.queue.core.windows.net/","table":"https://yueshi4debug.table.core.windows.net/","file":"https://yueshi4debug.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yueshi4debug-secondary.dfs.core.windows.net/","web":"https://yueshi4debug-secondary.z13.web.core.windows.net/","blob":"https://yueshi4debug-secondary.blob.core.windows.net/","queue":"https://yueshi4debug-secondary.queue.core.windows.net/","table":"https://yueshi4debug-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/zuhadls","name":"zuhadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-24T03:15:58.4932756Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-24T03:15:58.4932756Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-24T03:15:58.3995048Z","primaryEndpoints":{"dfs":"https://zuhadls.dfs.core.windows.net/","web":"https://zuhadls.z13.web.core.windows.net/","blob":"https://zuhadls.blob.core.windows.net/","queue":"https://zuhadls.queue.core.windows.net/","table":"https://zuhadls.table.core.windows.net/","file":"https://zuhadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhadls-secondary.dfs.core.windows.net/","web":"https://zuhadls-secondary.z13.web.core.windows.net/","blob":"https://zuhadls-secondary.blob.core.windows.net/","queue":"https://zuhadls-secondary.queue.core.windows.net/","table":"https://zuhadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-jweii/providers/Microsoft.Storage/storageAccounts/hdicli24oa6crgkoktdzndjl","name":"hdicli24oa6crgkoktdzndjl","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:34:41.0596665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:34:41.0596665Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-28T08:34:40.9502872Z","primaryEndpoints":{"blob":"https://hdicli24oa6crgkoktdzndjl.blob.core.windows.net/","queue":"https://hdicli24oa6crgkoktdzndjl.queue.core.windows.net/","table":"https://hdicli24oa6crgkoktdzndjl.table.core.windows.net/","file":"https://hdicli24oa6crgkoktdzndjl.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-ww3qe/providers/Microsoft.Storage/storageAccounts/hdiclisdavn2svxwmzv6ckfj","name":"hdiclisdavn2svxwmzv6ckfj","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:08:05.3661151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:08:05.3661151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-28T08:08:05.2723939Z","primaryEndpoints":{"blob":"https://hdiclisdavn2svxwmzv6ckfj.blob.core.windows.net/","queue":"https://hdiclisdavn2svxwmzv6ckfj.queue.core.windows.net/","table":"https://hdiclisdavn2svxwmzv6ckfj.table.core.windows.net/","file":"https://hdiclisdavn2svxwmzv6ckfj.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhors1","name":"zuhors1","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-15T10:24:14.5564134Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-15T10:24:14.5564134Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-15T10:24:14.4626525Z","primaryEndpoints":{"dfs":"https://zuhors1.dfs.core.windows.net/","web":"https://zuhors1.z20.web.core.windows.net/","blob":"https://zuhors1.blob.core.windows.net/","queue":"https://zuhors1.queue.core.windows.net/","table":"https://zuhors1.table.core.windows.net/","file":"https://zuhors1.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhors1-secondary.dfs.core.windows.net/","web":"https://zuhors1-secondary.z20.web.core.windows.net/","blob":"https://zuhors1-secondary.blob.core.windows.net/","queue":"https://zuhors1-secondary.queue.core.windows.net/","table":"https://zuhors1-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/zuhors2","name":"zuhors2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-15T10:25:12.6877194Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-15T10:25:12.6877194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-15T10:25:12.6095923Z","primaryEndpoints":{"dfs":"https://zuhors2.dfs.core.windows.net/","web":"https://zuhors2.z20.web.core.windows.net/","blob":"https://zuhors2.blob.core.windows.net/","queue":"https://zuhors2.queue.core.windows.net/","table":"https://zuhors2.table.core.windows.net/","file":"https://zuhors2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhors2-secondary.dfs.core.windows.net/","web":"https://zuhors2-secondary.z20.web.core.windows.net/","blob":"https://zuhors2-secondary.blob.core.windows.net/","queue":"https://zuhors2-secondary.queue.core.windows.net/","table":"https://zuhors2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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-10-28T08:49:33.8323603Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T08:49:33.8323603Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-28T08:49:33.7698338Z","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_advisorgwfh2kqx6xzrx3yehjki3c3sii2onjciow7esxte4nnqm2ellzhn5fwlwfr/providers/Microsoft.Storage/storageAccounts/clitestcj2rvros5dce2wjzr","name":"clitestcj2rvros5dce2wjzr","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-10-28T02:07:06.9339689Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T02:07:06.9339689Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-28T02:07:06.8558059Z","primaryEndpoints":{"blob":"https://clitestcj2rvros5dce2wjzr.blob.core.windows.net/","queue":"https://clitestcj2rvros5dce2wjzr.queue.core.windows.net/","table":"https://clitestcj2rvros5dce2wjzr.table.core.windows.net/","file":"https://clitestcj2rvros5dce2wjzr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_advisorgwfh2kqx6xzrx3yehjki3c3sii2onjciow7esxte4nnqm2ellzhn5fwlwfr/providers/Microsoft.Storage/storageAccounts/clitestsa001","name":"clitestsa001","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T02:13:27.3613536Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T02:13:27.3613536Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-28T02:13:27.2519782Z","primaryEndpoints":{"dfs":"https://clitestsa001.dfs.core.windows.net/","web":"https://clitestsa001.z22.web.core.windows.net/","blob":"https://clitestsa001.blob.core.windows.net/","queue":"https://clitestsa001.queue.core.windows.net/","table":"https://clitestsa001.table.core.windows.net/","file":"https://clitestsa001.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestsa001-secondary.dfs.core.windows.net/","web":"https://clitestsa001-secondary.z22.web.core.windows.net/","blob":"https://clitestsa001-secondary.blob.core.windows.net/","queue":"https://clitestsa001-secondary.queue.core.windows.net/","table":"https://clitestsa001-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_advisorgwfh2kqx6xzrx3yehjki3c3sii2onjciow7esxte4nnqm2ellzhn5fwlwfr/providers/Microsoft.Storage/storageAccounts/clitestsa6fupqxshplhmubt","name":"clitestsa6fupqxshplhmubt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T02:07:35.4672584Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T02:07:35.4672584Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-28T02:07:35.3735554Z","primaryEndpoints":{"dfs":"https://clitestsa6fupqxshplhmubt.dfs.core.windows.net/","web":"https://clitestsa6fupqxshplhmubt.z22.web.core.windows.net/","blob":"https://clitestsa6fupqxshplhmubt.blob.core.windows.net/","queue":"https://clitestsa6fupqxshplhmubt.queue.core.windows.net/","table":"https://clitestsa6fupqxshplhmubt.table.core.windows.net/","file":"https://clitestsa6fupqxshplhmubt.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestsa6fupqxshplhmubt-secondary.dfs.core.windows.net/","web":"https://clitestsa6fupqxshplhmubt-secondary.z22.web.core.windows.net/","blob":"https://clitestsa6fupqxshplhmubt-secondary.blob.core.windows.net/","queue":"https://clitestsa6fupqxshplhmubt-secondary.queue.core.windows.net/","table":"https://clitestsa6fupqxshplhmubt-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/euwapiptdevst02","name":"euwapiptdevst02","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-26T02:35:58.6598595Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-26T02:35:58.6598595Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-26T02:35:58.5817298Z","primaryEndpoints":{"dfs":"https://euwapiptdevst02.dfs.core.windows.net/","web":"https://euwapiptdevst02.z22.web.core.windows.net/","blob":"https://euwapiptdevst02.blob.core.windows.net/","queue":"https://euwapiptdevst02.queue.core.windows.net/","table":"https://euwapiptdevst02.table.core.windows.net/","file":"https://euwapiptdevst02.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/sharedvmextension","name":"sharedvmextension","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"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-06T03:37:04.8004229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-06T03:37:04.7066555Z","primaryEndpoints":{"dfs":"https://sharedvmextension.dfs.core.windows.net/","web":"https://sharedvmextension.z22.web.core.windows.net/","blob":"https://sharedvmextension.blob.core.windows.net/","queue":"https://sharedvmextension.queue.core.windows.net/","table":"https://sharedvmextension.table.core.windows.net/","file":"https://sharedvmextension.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sharedvmextension-secondary.dfs.core.windows.net/","web":"https://sharedvmextension-secondary.z22.web.core.windows.net/","blob":"https://sharedvmextension-secondary.blob.core.windows.net/","queue":"https://sharedvmextension-secondary.queue.core.windows.net/","table":"https://sharedvmextension-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/yssa","name":"yssa","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-10-27T14:55:33.7123620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-27T14:55:33.6342573Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z22.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":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssa-secondary.dfs.core.windows.net/","web":"https://yssa-secondary.z22.web.core.windows.net/","blob":"https://yssa-secondary.blob.core.windows.net/","queue":"https://yssa-secondary.queue.core.windows.net/","table":"https://yssa-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":{"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.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/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","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-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/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","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-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/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs","name":"jlstcs","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-10-13T06:39:02.4278678Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-13T06:39:02.3497160Z","primaryEndpoints":{"dfs":"https://jlstcs.dfs.core.windows.net/","web":"https://jlstcs.z23.web.core.windows.net/","blob":"https://jlstcs.blob.core.windows.net/","queue":"https://jlstcs.queue.core.windows.net/","table":"https://jlstcs.table.core.windows.net/","file":"https://jlstcs.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_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":"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_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_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":{"privateEndpointConnections":[],"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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-advisor-rg/providers/Microsoft.Storage/storageAccounts/clitestadvisorsa","name":"clitestadvisorsa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T03:07:03.8221559Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-28T03:07:03.8221559Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-28T03:07:03.7596418Z","primaryEndpoints":{"dfs":"https://clitestadvisorsa.dfs.core.windows.net/","web":"https://clitestadvisorsa.z5.web.core.windows.net/","blob":"https://clitestadvisorsa.blob.core.windows.net/","queue":"https://clitestadvisorsa.queue.core.windows.net/","table":"https://clitestadvisorsa.table.core.windows.net/","file":"https://clitestadvisorsa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestadvisorsa-secondary.dfs.core.windows.net/","web":"https://clitestadvisorsa-secondary.z5.web.core.windows.net/","blob":"https://clitestadvisorsa-secondary.blob.core.windows.net/","queue":"https://clitestadvisorsa-secondary.queue.core.windows.net/","table":"https://clitestadvisorsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrg9720","name":"storageaccountbimrg9720","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-10-21T02:27:38.9722589Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-21T02:27:38.9722589Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-21T02:27:38.9122637Z","primaryEndpoints":{"blob":"https://storageaccountbimrg9720.blob.core.windows.net/","queue":"https://storageaccountbimrg9720.queue.core.windows.net/","table":"https://storageaccountbimrg9720.table.core.windows.net/","file":"https://storageaccountbimrg9720.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrg9894","name":"storageaccountbimrg9894","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-10-20T05:21:08.1572844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-20T05:21:08.1572844Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-10-20T05:21:08.0772861Z","primaryEndpoints":{"blob":"https://storageaccountbimrg9894.blob.core.windows.net/","queue":"https://storageaccountbimrg9894.queue.core.windows.net/","table":"https://storageaccountbimrg9894.table.core.windows.net/","file":"https://storageaccountbimrg9894.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhblob","name":"zuhblob","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-06-08T02:49:16.2101485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-08T02:49:16.2101485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-06-08T02:49:16.1476663Z","primaryEndpoints":{"dfs":"https://zuhblob.dfs.core.windows.net/","blob":"https://zuhblob.blob.core.windows.net/","table":"https://zuhblob.table.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdefault","name":"zuhdefault","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"resourceAccessRules":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhadls"},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhblob"}],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"167.1.1.24","action":"Allow"},{"value":"13.66.128.0/17","action":"Allow"},{"value":"13.77.128.0/18","action":"Allow"},{"value":"13.104.129.64/26","action":"Allow"},{"value":"13.104.145.0/26","action":"Allow"},{"value":"13.104.208.192/26","action":"Allow"},{"value":"13.104.213.0/25","action":"Allow"},{"value":"13.104.220.0/25","action":"Allow"},{"value":"13.105.14.0/25","action":"Allow"},{"value":"13.105.14.128/26","action":"Allow"},{"value":"13.105.18.160/27","action":"Allow"},{"value":"13.105.36.0/27","action":"Allow"},{"value":"13.105.36.32/28","action":"Allow"},{"value":"13.105.36.64/27","action":"Allow"},{"value":"13.105.36.128/26","action":"Allow"},{"value":"13.105.66.64/26","action":"Allow"},{"value":"20.36.0.0/19","action":"Allow"},{"value":"20.38.99.0/24","action":"Allow"},{"value":"20.42.128.0/18","action":"Allow"},{"value":"20.47.62.0/23","action":"Allow"},{"value":"20.47.120.0/23","action":"Allow"},{"value":"20.51.64.0/18","action":"Allow"},{"value":"20.57.128.0/18","action":"Allow"},{"value":"20.59.0.0/18","action":"Allow"},{"value":"20.60.20.0/24","action":"Allow"},{"value":"20.150.68.0/24","action":"Allow"},{"value":"20.150.78.0/24","action":"Allow"},{"value":"20.150.87.0/24","action":"Allow"},{"value":"20.150.107.0/24","action":"Allow"},{"value":"20.187.0.0/18","action":"Allow"},{"value":"20.190.0.0/18","action":"Allow"},{"value":"20.190.133.0/24","action":"Allow"},{"value":"20.190.154.0/24","action":"Allow"},{"value":"20.191.64.0/18","action":"Allow"},{"value":"23.98.47.0/24","action":"Allow"},{"value":"23.102.192.0/21","action":"Allow"},{"value":"23.102.203.0/24","action":"Allow"},{"value":"23.103.64.32/27","action":"Allow"},{"value":"23.103.64.64/27","action":"Allow"},{"value":"23.103.66.0/23","action":"Allow"},{"value":"40.64.64.0/18","action":"Allow"},{"value":"40.64.128.0/21","action":"Allow"},{"value":"40.65.64.0/18","action":"Allow"},{"value":"40.77.136.0/28","action":"Allow"},{"value":"40.77.136.64/28","action":"Allow"},{"value":"40.77.139.128/25","action":"Allow"},{"value":"40.77.160.0/27","action":"Allow"},{"value":"40.77.162.0/24","action":"Allow"},{"value":"40.77.164.0/24","action":"Allow"},{"value":"40.77.169.0/24","action":"Allow"},{"value":"40.77.175.64/27","action":"Allow"},{"value":"40.77.180.0/23","action":"Allow"},{"value":"40.77.182.64/27","action":"Allow"},{"value":"40.77.185.128/25","action":"Allow"},{"value":"40.77.186.0/23","action":"Allow"},{"value":"40.77.198.128/25","action":"Allow"},{"value":"40.77.199.128/26","action":"Allow"},{"value":"40.77.200.0/25","action":"Allow"},{"value":"40.77.202.0/24","action":"Allow"},{"value":"40.77.224.96/27","action":"Allow"},{"value":"40.77.230.0/24","action":"Allow"},{"value":"40.77.232.128/25","action":"Allow"},{"value":"40.77.234.224/27","action":"Allow"},{"value":"40.77.236.128/27","action":"Allow"},{"value":"40.77.240.128/25","action":"Allow"},{"value":"40.77.241.0/24","action":"Allow"},{"value":"40.77.242.0/23","action":"Allow"},{"value":"40.77.247.0/24","action":"Allow"},{"value":"40.77.249.0/24","action":"Allow"},{"value":"40.77.250.0/24","action":"Allow"},{"value":"40.77.254.128/25","action":"Allow"},{"value":"40.78.208.32/30","action":"Allow"},{"value":"40.78.217.0/24","action":"Allow"},{"value":"40.78.240.0/20","action":"Allow"},{"value":"40.80.160.0/24","action":"Allow"},{"value":"40.82.36.0/22","action":"Allow"},{"value":"40.87.232.0/21","action":"Allow"},{"value":"40.90.16.192/26","action":"Allow"},{"value":"40.90.131.32/27","action":"Allow"},{"value":"40.90.132.48/28","action":"Allow"},{"value":"40.90.136.224/27","action":"Allow"},{"value":"40.90.138.208/28","action":"Allow"},{"value":"40.90.139.32/27","action":"Allow"},{"value":"40.90.146.32/27","action":"Allow"},{"value":"40.90.148.192/27","action":"Allow"},{"value":"40.90.153.0/26","action":"Allow"},{"value":"40.90.192.0/19","action":"Allow"},{"value":"40.91.0.0/22","action":"Allow"},{"value":"40.91.64.0/18","action":"Allow"},{"value":"40.91.160.0/19","action":"Allow"},{"value":"40.125.64.0/18","action":"Allow"},{"value":"40.126.5.0/24","action":"Allow"},{"value":"40.126.26.0/24","action":"Allow"},{"value":"51.141.160.0/19","action":"Allow"},{"value":"51.143.0.0/17","action":"Allow"},{"value":"52.96.11.0/24","action":"Allow"},{"value":"52.108.72.0/24","action":"Allow"},{"value":"52.108.93.0/24","action":"Allow"},{"value":"52.109.24.0/22","action":"Allow"},{"value":"52.111.246.0/24","action":"Allow"},{"value":"52.112.105.0/24","action":"Allow"},{"value":"52.112.109.0/24","action":"Allow"},{"value":"52.112.115.0/24","action":"Allow"},{"value":"52.114.148.0/22","action":"Allow"},{"value":"52.115.55.0/24","action":"Allow"},{"value":"52.136.0.0/22","action":"Allow"},{"value":"52.137.64.0/18","action":"Allow"},{"value":"52.143.64.0/18","action":"Allow"},{"value":"52.143.197.0/24","action":"Allow"},{"value":"52.143.211.0/24","action":"Allow"},{"value":"52.148.128.0/18","action":"Allow"},{"value":"52.149.0.0/18","action":"Allow"},{"value":"52.151.0.0/18","action":"Allow"},{"value":"52.156.64.0/18","action":"Allow"},{"value":"52.156.128.0/19","action":"Allow"},{"value":"52.158.224.0/19","action":"Allow"},{"value":"52.175.192.0/18","action":"Allow"},{"value":"52.183.0.0/17","action":"Allow"},{"value":"52.191.128.0/18","action":"Allow"},{"value":"52.229.0.0/18","action":"Allow"},{"value":"52.232.152.0/24","action":"Allow"},{"value":"52.233.64.0/18","action":"Allow"},{"value":"52.235.64.0/18","action":"Allow"},{"value":"52.239.148.128/25","action":"Allow"},{"value":"52.239.176.128/25","action":"Allow"},{"value":"52.239.193.0/24","action":"Allow"},{"value":"52.239.210.0/23","action":"Allow"},{"value":"52.239.236.0/23","action":"Allow"},{"value":"52.245.52.0/22","action":"Allow"},{"value":"52.246.192.0/18","action":"Allow"},{"value":"52.247.192.0/18","action":"Allow"},{"value":"52.250.0.0/17","action":"Allow"},{"value":"65.52.111.0/24","action":"Allow"},{"value":"65.55.32.128/28","action":"Allow"},{"value":"65.55.32.192/27","action":"Allow"},{"value":"65.55.32.224/28","action":"Allow"},{"value":"65.55.33.176/28","action":"Allow"},{"value":"65.55.33.192/28","action":"Allow"},{"value":"65.55.35.192/27","action":"Allow"},{"value":"65.55.44.8/29","action":"Allow"},{"value":"65.55.44.112/28","action":"Allow"},{"value":"65.55.51.0/24","action":"Allow"},{"value":"65.55.105.160/27","action":"Allow"},{"value":"65.55.106.192/28","action":"Allow"},{"value":"65.55.106.240/28","action":"Allow"},{"value":"65.55.107.0/28","action":"Allow"},{"value":"65.55.107.96/27","action":"Allow"},{"value":"65.55.110.0/24","action":"Allow"},{"value":"65.55.120.0/24","action":"Allow"},{"value":"65.55.207.0/24","action":"Allow"},{"value":"65.55.209.0/25","action":"Allow"},{"value":"65.55.210.0/24","action":"Allow"},{"value":"65.55.219.64/26","action":"Allow"},{"value":"65.55.250.0/24","action":"Allow"},{"value":"65.55.252.0/24","action":"Allow"},{"value":"70.37.0.0/21","action":"Allow"},{"value":"70.37.8.0/22","action":"Allow"},{"value":"70.37.16.0/20","action":"Allow"},{"value":"70.37.32.0/20","action":"Allow"},{"value":"104.44.89.128/27","action":"Allow"},{"value":"104.44.89.192/27","action":"Allow"},{"value":"104.44.95.0/28","action":"Allow"},{"value":"131.253.12.160/28","action":"Allow"},{"value":"131.253.12.228/30","action":"Allow"},{"value":"131.253.13.24/29","action":"Allow"},{"value":"131.253.13.88/30","action":"Allow"},{"value":"131.253.13.128/27","action":"Allow"},{"value":"131.253.14.4/30","action":"Allow"},{"value":"131.253.14.96/27","action":"Allow"},{"value":"131.253.14.128/27","action":"Allow"},{"value":"131.253.14.192/29","action":"Allow"},{"value":"131.253.15.192/28","action":"Allow"},{"value":"131.253.35.128/26","action":"Allow"},{"value":"131.253.40.48/29","action":"Allow"},{"value":"131.253.40.128/27","action":"Allow"},{"value":"131.253.41.0/24","action":"Allow"},{"value":"134.170.222.0/24","action":"Allow"},{"value":"137.116.176.0/21","action":"Allow"},{"value":"157.55.2.128/26","action":"Allow"},{"value":"157.55.12.64/26","action":"Allow"},{"value":"157.55.13.64/26","action":"Allow"},{"value":"157.55.39.0/24","action":"Allow"},{"value":"157.55.55.228/30","action":"Allow"},{"value":"157.55.55.232/29","action":"Allow"},{"value":"157.55.55.240/28","action":"Allow"},{"value":"157.55.106.0/26","action":"Allow"},{"value":"157.55.154.128/25","action":"Allow"},{"value":"157.56.2.0/25","action":"Allow"},{"value":"157.56.3.128/25","action":"Allow"},{"value":"157.56.19.224/27","action":"Allow"},{"value":"157.56.21.160/27","action":"Allow"},{"value":"157.56.21.192/27","action":"Allow"},{"value":"157.56.80.0/25","action":"Allow"},{"value":"168.62.64.0/19","action":"Allow"},{"value":"199.30.24.0/23","action":"Allow"},{"value":"199.30.27.0/25","action":"Allow"},{"value":"199.30.27.144/28","action":"Allow"},{"value":"199.30.27.160/27","action":"Allow"},{"value":"199.30.31.192/26","action":"Allow"},{"value":"207.46.13.0/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-08T06:37:33.5016145Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-08T06:37:33.5016145Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-08T06:37:33.4547782Z","primaryEndpoints":{"dfs":"https://zuhdefault.dfs.core.windows.net/","web":"https://zuhdefault.z3.web.core.windows.net/","blob":"https://zuhdefault.blob.core.windows.net/","queue":"https://zuhdefault.queue.core.windows.net/","table":"https://zuhdefault.table.core.windows.net/","file":"https://zuhdefault.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhdefault-secondary.dfs.core.windows.net/","web":"https://zuhdefault-secondary.z3.web.core.windows.net/","blob":"https://zuhdefault-secondary.blob.core.windows.net/","queue":"https://zuhdefault-secondary.queue.core.windows.net/","table":"https://zuhdefault-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '10080' + - '106962' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:23:34 GMT + - Wed, 28 Oct 2020 08:49:55 GMT expires: - '-1' pragma: @@ -43,10 +42,14 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - e0bbbae3-5907-401d-81e1-f5489736e072 - - c7812eba-4366-45b7-8a8d-c6715588212f - - 870b8bcf-f6bd-4d58-9350-9503cd970894 - - 1753691b-87d0-4642-954b-5ca06936dc1a + - 1e9024e7-304c-42f6-9ceb-c189eecff505 + - ad9d52c6-7bf0-45be-8b64-72467f6db09c + - e47974f7-c5b2-47a8-9466-24e9ba08fce3 + - cda77f01-f416-4533-b145-4da63ec21343 + - 86197cea-9a45-4663-8e4b-3a1b31596e89 + - 09fe2ee7-6d8d-44e9-8096-d26e5bdbc22e + - 142aee8e-3176-42cd-b585-f4ee266e9940 + - af00da44-06a3-42d3-8d15-138baea02a34 status: code: 200 message: OK @@ -66,8 +69,8 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-storage/11.1.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -83,7 +86,7 @@ interactions: content-type: - application/json date: - - Fri, 21 Aug 2020 21:23:34 GMT + - Wed, 28 Oct 2020 08:49:55 GMT expires: - '-1' pragma: @@ -99,7 +102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -111,13 +114,13 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.2; Windows 10) AZURECLI/2.11.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.14.0 x-ms-date: - - Fri, 21 Aug 2020 21:23:33 GMT + - Wed, 28 Oct 2020 08:49:55 GMT x-ms-version: - '2018-11-09' method: PUT - uri: https://clitest000002.blob.core.windows.net/iothubcontainer1?restype=container + uri: https://clitest000002.blob.core.windows.net/iothubcontainer1000004?restype=container response: body: string: '' @@ -125,11 +128,11 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:23:34 GMT + - Wed, 28 Oct 2020 08:49:56 GMT etag: - - '"0x8D846187649828C"' + - '"0x8D87B1E72063F2D"' last-modified: - - Fri, 21 Aug 2020 21:23:35 GMT + - Wed, 28 Oct 2020 08:49:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -153,8 +156,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-storage/11.1.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -170,7 +173,7 @@ interactions: content-type: - application/json date: - - Fri, 21 Aug 2020 21:23:35 GMT + - Wed, 28 Oct 2020 08:49:57 GMT expires: - '-1' pragma: @@ -186,7 +189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' status: code: 200 message: OK @@ -204,24 +207,24 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-08-21T21:23:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T08:49:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '472' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:23:35 GMT + - Wed, 28 Oct 2020 08:49:56 GMT expires: - '-1' pragma: @@ -253,34 +256,34 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2018-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:23:37.247Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West + US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1mxvlaye","createdAt":"2020-10-28T08:50:05.777Z","updatedAt":"2020-10-28T08:50:05.777Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '785' + - '813' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:23:37 GMT + - Wed, 28 Oct 2020 08:50:06 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -308,23 +311,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2018-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:23:37.247Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West + US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1mxvlaye","createdAt":"2020-10-28T08:50:05.777Z","updatedAt":"2020-10-28T08:50:05.777Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '785' + - '813' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:24:07 GMT + - Wed, 28 Oct 2020 08:50:38 GMT expires: - '-1' pragma: @@ -359,23 +362,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2018-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:23:37.247Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West + US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1mxvlaye","createdAt":"2020-10-28T08:50:05.777Z","updatedAt":"2020-10-28T08:50:57.153Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '785' + - '811' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:24:38 GMT + - Wed, 28 Oct 2020 08:51:09 GMT expires: - '-1' pragma: @@ -410,238 +413,34 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:23:37.247Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '785' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Aug 2020 21:25:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-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: - - eventhubs namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:23:37.247Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '785' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Aug 2020 21:25:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-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: - - eventhubs namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:23:37.247Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '785' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Aug 2020 21:26:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-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: - - eventhubs namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:26:22.43Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '782' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Aug 2020 21:26:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-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: - - eventhubs namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2018-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-08-21T21:23:37.247Z","updatedAt":"2020-08-21T21:26:22.43Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Active"}}' + string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West + US 2","tags":{},"properties":{"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1mxvlaye","createdAt":"2020-10-28T08:50:05.777Z","updatedAt":"2020-10-28T08:50:57.153Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '782' + - '811' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:38 GMT + - Wed, 28 Oct 2020 08:51:10 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -671,25 +470,25 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest?api-version=2017-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006?api-version=2017-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest","name":"eventHubiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West - US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-08-21T21:26:41.183Z","updatedAt":"2020-08-21T21:26:41.43Z","partitionIds":["0","1","2","3"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006","name":"eventHubiothubfortest000006","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West + US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-10-28T08:51:12.82Z","updatedAt":"2020-10-28T08:51:13.14Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '541' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:41 GMT + - Wed, 28 Oct 2020 08:51:12 GMT expires: - '-1' pragma: @@ -708,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -730,25 +529,25 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name --rights User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest?api-version=2017-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest?api-version=2017-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest","name":"eventHubPolicyiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules","location":"West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest","name":"eventHubPolicyiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules","location":"West US 2","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache content-length: - - '457' + - '475' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:42 GMT + - Wed, 28 Oct 2020 08:51:14 GMT expires: - '-1' pragma: @@ -767,7 +566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 200 message: OK @@ -787,24 +586,24 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-eventhub/4.0.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-eventhub/4.1.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest/listKeys?api-version=2017-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest/listKeys?api-version=2017-04-01 response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ypmX/6XVuw0v0CKRUKviitWdfz4CRCrv8gC+eVmWJL8=;EntityPath=eventHubiothubfortest","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=wlpZoKtNrPFIMlbQpFQKZRrOTubVvsLddyB+Mu7AXxY=;EntityPath=eventHubiothubfortest000006","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache content-length: - - '633' + - '669' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:43 GMT + - Wed, 28 Oct 2020 08:51:15 GMT expires: - '-1' pragma: @@ -841,24 +640,24 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-08-21T21:23:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T08:49:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '472' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:43 GMT + - Wed, 28 Oct 2020 08:51:15 GMT expires: - '-1' pragma: @@ -896,18 +695,18 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: '{"code":400016,"httpStatusCode":"BadRequest","message":"Invalid PartitionCount 4 - value must be between 2 and 2. If you contact a support representative - please include this correlation identifier: f71a36d6-1ffc-4b1e-826c-5eda60552671, - timestamp: 2020-08-21 21:26:44Z, errorcode: IH400016."}' + please include this correlation identifier: 927862dc-3627-4655-be20-5c8bd5169c5e, + timestamp: 2020-10-28 08:51:22Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -916,7 +715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:44 GMT + - Wed, 28 Oct 2020 08:51:24 GMT expires: - '-1' pragma: @@ -928,7 +727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 400 message: Bad Request @@ -946,24 +745,24 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-08-21T21:23:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T08:49:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '472' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:44 GMT + - Wed, 28 Oct 2020 08:51:25 GMT expires: - '-1' pragma: @@ -1001,18 +800,18 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: '{"code":400016,"httpStatusCode":"BadRequest","message":"Invalid PartitionCount 4 - value must be between 2 and 2. If you contact a support representative - please include this correlation identifier: 1aacf307-b47e-4ef5-8969-b0e386d87703, - timestamp: 2020-08-21 21:26:45Z, errorcode: IH400016."}' + please include this correlation identifier: 5877b12c-70ee-4965-bf90-57fd93a7f9a1, + timestamp: 2020-10-28 08:51:32Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -1021,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:45 GMT + - Wed, 28 Oct 2020 08:51:34 GMT expires: - '-1' pragma: @@ -1051,24 +850,24 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-08-21T21:23:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T08:49:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '472' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:45 GMT + - Wed, 28 Oct 2020 08:51:35 GMT expires: - '-1' pragma: @@ -1106,26 +905,26 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":2}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":2}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTVjNjkxNGEtM2Q0Zi00MGYzLTk4MzMtYWQ2YWQ5MjJmOTk1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzU2YjllOTQtZjU3OS00NTExLTkzYjctYzg2ZjIwMWIwMDUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '1149' + - '1175' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:26:50 GMT + - Wed, 28 Oct 2020 08:51:44 GMT expires: - '-1' pragma: @@ -1155,10 +954,57 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzU2YjllOTQtZjU3OS00NTExLTkzYjctYzg2ZjIwMWIwMDUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 08:52:16 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --partition-count + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTVjNjkxNGEtM2Q0Zi00MGYzLTk4MzMtYWQ2YWQ5MjJmOTk1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzU2YjllOTQtZjU3OS00NTExLTkzYjctYzg2ZjIwMWIwMDUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1170,7 +1016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:27:20 GMT + - Wed, 28 Oct 2020 08:52:47 GMT expires: - '-1' pragma: @@ -1202,10 +1048,10 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTVjNjkxNGEtM2Q0Zi00MGYzLTk4MzMtYWQ2YWQ5MjJmOTk1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzU2YjllOTQtZjU3OS00NTExLTkzYjctYzg2ZjIwMWIwMDUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1217,7 +1063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:27:51 GMT + - Wed, 28 Oct 2020 08:53:18 GMT expires: - '-1' pragma: @@ -1249,23 +1095,23 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwhDyU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-4157354-9140f81e8d","endpoint":"sb://ihsuprodmwhres016dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByidDE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-5563509-75711ec8ad","endpoint":"sb://ihsuprodmwhres011dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1664' + - '1730' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:27:52 GMT + - Wed, 28 Oct 2020 08:53:19 GMT expires: - '-1' pragma: @@ -1297,39 +1143,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwhDyU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-4157354-9140f81e8d","endpoint":"sb://ihsuprodmwhres016dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByidDE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-5563509-75711ec8ad","endpoint":"sb://ihsuprodmwhres011dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24768' + - '1742' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:27:54 GMT + - Wed, 28 Oct 2020 08:53:22 GMT expires: - '-1' pragma: @@ -1363,18 +1195,18 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmM5OGJmMjMtMDg1MS00NTU4LTg3NWEtY2ExN2I4NDQyNDQ0?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJkMjE2YTctMjgzNS00ZGE3LTkyYzktY2YyMTc5Y2NjZGQ1?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1382,11 +1214,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:27:55 GMT + - Wed, 28 Oct 2020 08:53:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmM5OGJmMjMtMDg1MS00NTU4LTg3NWEtY2ExN2I4NDQyNDQ0?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJkMjE2YTctMjgzNS00ZGE3LTkyYzktY2YyMTc5Y2NjZGQ1?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -1414,10 +1246,10 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmM5OGJmMjMtMDg1MS00NTU4LTg3NWEtY2ExN2I4NDQyNDQ0?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJkMjE2YTctMjgzNS00ZGE3LTkyYzktY2YyMTc5Y2NjZGQ1?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1429,7 +1261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:28:12 GMT + - Wed, 28 Oct 2020 08:53:40 GMT expires: - '-1' pragma: @@ -1461,24 +1293,24 @@ interactions: ParameterSetName: - -n -g --sku --mintls User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-08-21T21:23:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T08:49:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '472' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:28:12 GMT + - Wed, 28 Oct 2020 08:53:42 GMT expires: - '-1' pragma: @@ -1517,18 +1349,18 @@ interactions: ParameterSetName: - -n -g --sku --mintls User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: '{"code":400089,"httpStatusCode":"BadRequest","message":"2.5 is not a valid MinTlsVersion value. If you contact a support representative please - include this correlation identifier: 39a0fe7a-935e-460c-bff0-d0c5930c9697, - timestamp: 2020-08-21 21:28:13Z, errorcode: IH400089."}' + include this correlation identifier: b85b56d9-75e4-45b0-a894-adb31d16defb, + timestamp: 2020-10-28 08:53:44Z, errorcode: IH400089."}' headers: cache-control: - no-cache @@ -1537,7 +1369,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:28:13 GMT + - Wed, 28 Oct 2020 08:53:44 GMT expires: - '-1' pragma: @@ -1549,7 +1381,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 400 message: Bad Request @@ -1569,24 +1401,24 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-08-21T21:23:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T08:49:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '472' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:28:13 GMT + - Wed, 28 Oct 2020 08:53:45 GMT expires: - '-1' pragma: @@ -1627,26 +1459,26 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDljY2QzYzMtNThmZi00NDI5LTk3NGYtMmM5NzNjZWU2ZmZk?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjZjY5NzktNWU3Zi00N2JiLWI4YjAtZTAwMDRmMWRhOWVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '1180' + - '1206' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:28:19 GMT + - Wed, 28 Oct 2020 08:53:54 GMT expires: - '-1' pragma: @@ -1678,10 +1510,59 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjZjY5NzktNWU3Zi00N2JiLWI4YjAtZTAwMDRmMWRhOWVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 08:54:25 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --retention-day --c2d-ttl --c2d-max-delivery-count --feedback-ttl --feedback-lock-duration + --feedback-max-delivery-count --fileupload-notification-max-delivery-count + --fileupload-notification-ttl --min-tls-version + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDljY2QzYzMtNThmZi00NDI5LTk3NGYtMmM5NzNjZWU2ZmZk?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjZjY5NzktNWU3Zi00N2JiLWI4YjAtZTAwMDRmMWRhOWVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1693,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:28:49 GMT + - Wed, 28 Oct 2020 08:54:56 GMT expires: - '-1' pragma: @@ -1727,10 +1608,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDljY2QzYzMtNThmZi00NDI5LTk3NGYtMmM5NzNjZWU2ZmZk?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjZjY5NzktNWU3Zi00N2JiLWI4YjAtZTAwMDRmMWRhOWVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1742,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:29:19 GMT + - Wed, 28 Oct 2020 08:55:26 GMT expires: - '-1' pragma: @@ -1776,10 +1657,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDljY2QzYzMtNThmZi00NDI5LTk3NGYtMmM5NzNjZWU2ZmZk?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjZjY5NzktNWU3Zi00N2JiLWI4YjAtZTAwMDRmMWRhOWVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1791,7 +1672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:29:49 GMT + - Wed, 28 Oct 2020 08:55:57 GMT expires: - '-1' pragma: @@ -1825,10 +1706,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDljY2QzYzMtNThmZi00NDI5LTk3NGYtMmM5NzNjZWU2ZmZk?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjZjY5NzktNWU3Zi00N2JiLWI4YjAtZTAwMDRmMWRhOWVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1840,7 +1721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:20 GMT + - Wed, 28 Oct 2020 08:56:28 GMT expires: - '-1' pragma: @@ -1874,23 +1755,23 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1691' + - '1763' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:20 GMT + - Wed, 28 Oct 2020 08:56:28 GMT expires: - '-1' pragma: @@ -1922,39 +1803,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24795' + - '1775' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:23 GMT + - Wed, 28 Oct 2020 08:56:31 GMT expires: - '-1' pragma: @@ -1988,12 +1855,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 response: body: string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -2006,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:23 GMT + - Wed, 28 Oct 2020 08:56:31 GMT expires: - '-1' pragma: @@ -2040,39 +1907,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24795' + - '1775' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:26 GMT + - Wed, 28 Oct 2020 08:56:32 GMT expires: - '-1' pragma: @@ -2106,12 +1959,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 response: body: string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -2124,7 +1977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:27 GMT + - Wed, 28 Oct 2020 08:56:32 GMT expires: - '-1' pragma: @@ -2140,7 +1993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2158,39 +2011,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24795' + - '1775' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:29 GMT + - Wed, 28 Oct 2020 08:56:33 GMT expires: - '-1' pragma: @@ -2224,12 +2063,12 @@ interactions: ParameterSetName: - -n -g --all User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -2242,7 +2081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:29 GMT + - Wed, 28 Oct 2020 08:56:35 GMT expires: - '-1' pragma: @@ -2276,39 +2115,25 @@ interactions: ParameterSetName: - -n -g --all User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24795' + - '1775' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:32 GMT + - Wed, 28 Oct 2020 08:56:35 GMT expires: - '-1' pragma: @@ -2340,39 +2165,25 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24795' + - '1775' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:34 GMT + - Wed, 28 Oct 2020 08:56:37 GMT expires: - '-1' pragma: @@ -2404,39 +2215,25 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24795' + - '1775' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:37 GMT + - Wed, 28 Oct 2020 08:56:37 GMT expires: - '-1' pragma: @@ -2455,14 +2252,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwmGqM=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBysaWY=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -2478,39 +2275,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1197' + - '1205' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwmGqM=''}' + - '{''IF-MATCH'': ''AAAABBysaWY=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwmGqM=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:29:52 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:29:52 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:29:52 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:29:52 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:29:52 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:29:52 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:29:52 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:29:52 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBysaWY=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:55:54 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:55:54 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:55:54 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:55:54 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:55:54 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:55:54 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:55:54 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:55:54 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjFkNzE2YTAtZDI4Mi00MDg4LThlMGEtMzFhOWM4YjUwMTJh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzBlOTc5YmQtMjMxNC00NWM2LWEzYjgtN2Y4MzE1NDNiZWUx?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4353' + - '4421' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:30:40 GMT + - Wed, 28 Oct 2020 08:56:44 GMT expires: - '-1' pragma: @@ -2540,10 +2337,10 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjFkNzE2YTAtZDI4Mi00MDg4LThlMGEtMzFhOWM4YjUwMTJh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzBlOTc5YmQtMjMxNC00NWM2LWEzYjgtN2Y4MzE1NDNiZWUx?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2555,7 +2352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:10 GMT + - Wed, 28 Oct 2020 08:57:16 GMT expires: - '-1' pragma: @@ -2587,23 +2384,23 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDFU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByuOUM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1887' + - '1905' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:10 GMT + - Wed, 28 Oct 2020 08:57:17 GMT expires: - '-1' pragma: @@ -2635,39 +2432,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDFU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByuOUM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:13 GMT + - Wed, 28 Oct 2020 08:57:19 GMT expires: - '-1' pragma: @@ -2699,25 +2482,25 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDFU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByuOUM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '1899' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:14 GMT + - Wed, 28 Oct 2020 08:57:20 GMT expires: - '-1' pragma: @@ -2749,39 +2532,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDFU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByuOUM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:17 GMT + - Wed, 28 Oct 2020 08:57:21 GMT expires: - '-1' pragma: @@ -2813,12 +2582,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/skus?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/skus?api-version=2020-03-01 response: body: string: '{"value":[{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S1","tier":"Standard"},"capacity":{"minimum":1,"maximum":200,"default":1,"scaleType":"Manual"}},{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S2","tier":"Standard"},"capacity":{"minimum":1,"maximum":200,"default":1,"scaleType":"Manual"}},{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S3","tier":"Standard"},"capacity":{"minimum":1,"maximum":10,"default":1,"scaleType":"Manual"}}]}' @@ -2830,7 +2599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:17 GMT + - Wed, 28 Oct 2020 08:57:22 GMT expires: - '-1' pragma: @@ -2862,39 +2631,25 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDFU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByuOUM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:20 GMT + - Wed, 28 Oct 2020 08:57:25 GMT expires: - '-1' pragma: @@ -2928,12 +2683,12 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -2946,7 +2701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:20 GMT + - Wed, 28 Oct 2020 08:57:25 GMT expires: - '-1' pragma: @@ -2962,12 +2717,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwoDFU=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABByuOUM=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -2982,7 +2737,7 @@ interactions: [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -2998,40 +2753,40 @@ interactions: Connection: - keep-alive Content-Length: - - '2160' + - '2168' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwoDFU=''}' + - '{''IF-MATCH'': ''AAAABByuOUM=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDFU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByuOUM=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:30:58 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:30:58 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:30:58 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:30:58 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:30:58 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:30:58 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:30:58 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:30:58 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:56:59 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:56:59 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:56:59 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:56:59 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:56:59 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:56:59 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:56:59 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:56:59 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmMxZjgwNDctZmZlOS00NGU2LWFlMTYtNTVkMjdjOWIyODVh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDQ0YmQzMmUtZjY0YS00MzRhLWE3NTQtZmY1ZDM5MmY5YzAw?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4557' + - '4625' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:22 GMT + - Wed, 28 Oct 2020 08:57:31 GMT expires: - '-1' pragma: @@ -3043,7 +2798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -3061,10 +2816,10 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmMxZjgwNDctZmZlOS00NGU2LWFlMTYtNTVkMjdjOWIyODVh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDQ0YmQzMmUtZjY0YS00MzRhLWE3NTQtZmY1ZDM5MmY5YzAw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3076,7 +2831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:52 GMT + - Wed, 28 Oct 2020 08:58:03 GMT expires: - '-1' pragma: @@ -3108,23 +2863,23 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDt8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBywEZk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1887' + - '1905' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:53 GMT + - Wed, 28 Oct 2020 08:58:04 GMT expires: - '-1' pragma: @@ -3156,39 +2911,25 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDt8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBywEZk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:56 GMT + - Wed, 28 Oct 2020 08:58:06 GMT expires: - '-1' pragma: @@ -3222,12 +2963,12 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -3241,7 +2982,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:56 GMT + - Wed, 28 Oct 2020 08:58:06 GMT expires: - '-1' pragma: @@ -3257,7 +2998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -3275,39 +3016,25 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDt8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBywEZk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:31:59 GMT + - Wed, 28 Oct 2020 08:58:08 GMT expires: - '-1' pragma: @@ -3341,12 +3068,12 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -3359,7 +3086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:00 GMT + - Wed, 28 Oct 2020 08:58:08 GMT expires: - '-1' pragma: @@ -3393,39 +3120,25 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDt8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBywEZk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:03 GMT + - Wed, 28 Oct 2020 08:58:11 GMT expires: - '-1' pragma: @@ -3459,12 +3172,12 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -3478,7 +3191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:03 GMT + - Wed, 28 Oct 2020 08:58:11 GMT expires: - '-1' pragma: @@ -3499,7 +3212,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwoDt8=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBywEZk=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -3515,7 +3228,7 @@ interactions: [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -3531,41 +3244,41 @@ interactions: Connection: - keep-alive Content-Length: - - '2286' + - '2294' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwoDt8=''}' + - '{''IF-MATCH'': ''AAAABBywEZk=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoDt8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBywEZk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:31:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:31:36 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:31:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:31:36 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:31:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:31:36 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:31:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:31:36 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:31:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:31:36 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:57:43 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:57:43 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:57:43 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:57:43 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:57:43 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:57:43 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:57:43 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:57:43 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:57:43 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:57:43 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDc1OWYyNTUtNTg5NC00MjMwLThiMGQtMmFmZjk1NWNhM2Rm?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2IxMWYxZDYtMDJkMC00MmM3LTg1NTUtZjljMzYwZjBhNGM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4868' + - '4936' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:05 GMT + - Wed, 28 Oct 2020 08:58:19 GMT expires: - '-1' pragma: @@ -3577,7 +3290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -3595,10 +3308,10 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDc1OWYyNTUtNTg5NC00MjMwLThiMGQtMmFmZjk1NWNhM2Rm?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2IxMWYxZDYtMDJkMC00MmM3LTg1NTUtZjljMzYwZjBhNGM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3610,7 +3323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:35 GMT + - Wed, 28 Oct 2020 08:58:51 GMT expires: - '-1' pragma: @@ -3642,23 +3355,23 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoD+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByy08E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1887' + - '1905' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:36 GMT + - Wed, 28 Oct 2020 08:58:52 GMT expires: - '-1' pragma: @@ -3690,39 +3403,25 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoD+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByy08E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:38 GMT + - Wed, 28 Oct 2020 08:58:54 GMT expires: - '-1' pragma: @@ -3756,12 +3455,12 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -3774,7 +3473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:38 GMT + - Wed, 28 Oct 2020 08:58:54 GMT expires: - '-1' pragma: @@ -3808,39 +3507,25 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoD+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByy08E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:42 GMT + - Wed, 28 Oct 2020 08:58:57 GMT expires: - '-1' pragma: @@ -3874,12 +3559,12 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -3892,7 +3577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:42 GMT + - Wed, 28 Oct 2020 08:58:57 GMT expires: - '-1' pragma: @@ -3926,39 +3611,25 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoD+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByy08E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:44 GMT + - Wed, 28 Oct 2020 08:58:57 GMT expires: - '-1' pragma: @@ -3990,39 +3661,25 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoD+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByy08E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:47 GMT + - Wed, 28 Oct 2020 08:58:59 GMT expires: - '-1' pragma: @@ -4056,12 +3713,12 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4075,7 +3732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:47 GMT + - Wed, 28 Oct 2020 08:58:59 GMT expires: - '-1' pragma: @@ -4091,12 +3748,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwoD+8=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABByy08E=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -4112,7 +3769,7 @@ interactions: [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -4128,41 +3785,41 @@ interactions: Connection: - keep-alive Content-Length: - - '2286' + - '2294' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwoD+8=''}' + - '{''IF-MATCH'': ''AAAABByy08E=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoD+8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByy08E=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:32:16 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:32:16 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:32:16 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:32:16 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:32:16 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:32:16 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:32:16 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:32:16 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:32:16 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:32:16 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:58:31 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:58:31 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:58:31 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:58:31 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:58:31 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:58:31 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:58:31 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:58:31 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:58:31 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:58:31 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzOTdlYzMtY2Y0OS00N2ViLThmMTUtOTIyNGIwNzdhY2Q1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWI4ODRkZjQtNWYxNS00ZWM5LWJiM2MtY2Q2NTJmZDBjMTdk?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4868' + - '4936' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:32:50 GMT + - Wed, 28 Oct 2020 08:59:05 GMT expires: - '-1' pragma: @@ -4174,7 +3831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4997' status: code: 201 message: Created @@ -4192,10 +3849,10 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjIzOTdlYzMtY2Y0OS00N2ViLThmMTUtOTIyNGIwNzdhY2Q1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWI4ODRkZjQtNWYxNS00ZWM5LWJiM2MtY2Q2NTJmZDBjMTdk?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4207,7 +3864,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:19 GMT + - Wed, 28 Oct 2020 08:59:37 GMT expires: - '-1' pragma: @@ -4239,23 +3896,23 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoufw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByzxS8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1887' + - '1905' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:20 GMT + - Wed, 28 Oct 2020 08:59:38 GMT expires: - '-1' pragma: @@ -4287,39 +3944,25 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoufw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByzxS8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:23 GMT + - Wed, 28 Oct 2020 08:59:39 GMT expires: - '-1' pragma: @@ -4353,12 +3996,12 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4371,7 +4014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:24 GMT + - Wed, 28 Oct 2020 08:59:39 GMT expires: - '-1' pragma: @@ -4387,7 +4030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -4405,39 +4048,25 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoufw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByzxS8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:26 GMT + - Wed, 28 Oct 2020 08:59:42 GMT expires: - '-1' pragma: @@ -4471,12 +4100,12 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4490,7 +4119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:26 GMT + - Wed, 28 Oct 2020 08:59:43 GMT expires: - '-1' pragma: @@ -4526,12 +4155,12 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4545,7 +4174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:27 GMT + - Wed, 28 Oct 2020 08:59:43 GMT expires: - '-1' pragma: @@ -4566,7 +4195,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwoufw=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABByzxS8=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -4580,7 +4209,7 @@ interactions: [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -4596,40 +4225,40 @@ interactions: Connection: - keep-alive Content-Length: - - '2074' + - '2082' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwoufw=''}' + - '{''IF-MATCH'': ''AAAABByzxS8=''}' ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwoufw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:02 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:02 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:02 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:02 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:02 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:02 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:02 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:02 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:02 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:02 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABByzxS8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:59:17 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:59:17 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 08:59:17 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:59:17 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:59:17 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:59:17 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:59:17 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:59:17 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 08:59:17 GMT","ModifiedTime":"Wed, 28 Oct 2020 08:59:17 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTYyMjkwNTQtNWE3ZC00MmYxLWJlODItMzYzZjlkYTkyMTYz?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzFlOTM1ZGMtODJlMy00NGE0LTgyMGYtMDM3NTk3NTIzYjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4664' + - '4732' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:33:29 GMT + - Wed, 28 Oct 2020 08:59:49 GMT expires: - '-1' pragma: @@ -4659,10 +4288,10 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTYyMjkwNTQtNWE3ZC00MmYxLWJlODItMzYzZjlkYTkyMTYz?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzFlOTM1ZGMtODJlMy00NGE0LTgyMGYtMDM3NTk3NTIzYjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4674,7 +4303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:00 GMT + - Wed, 28 Oct 2020 09:00:21 GMT expires: - '-1' pragma: @@ -4706,23 +4335,23 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1887' + - '1905' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:00 GMT + - Wed, 28 Oct 2020 09:00:22 GMT expires: - '-1' pragma: @@ -4754,39 +4383,25 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:03 GMT + - Wed, 28 Oct 2020 09:00:24 GMT expires: - '-1' pragma: @@ -4820,12 +4435,12 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2020-03-01 response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4838,7 +4453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:03 GMT + - Wed, 28 Oct 2020 09:00:25 GMT expires: - '-1' pragma: @@ -4872,39 +4487,25 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:06 GMT + - Wed, 28 Oct 2020 09:00:27 GMT expires: - '-1' pragma: @@ -4938,24 +4539,24 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"properties":{"created":"Fri, 21 Aug 2020 21:34:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Wed, 28 Oct 2020 09:00:30 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache content-length: - - '401' + - '414' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:08 GMT + - Wed, 28 Oct 2020 09:00:30 GMT expires: - '-1' pragma: @@ -4971,7 +4572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -4989,39 +4590,25 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:10 GMT + - Wed, 28 Oct 2020 09:00:31 GMT expires: - '-1' pragma: @@ -5053,24 +4640,24 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"properties":{"created":"Fri, 21 Aug 2020 21:34:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Wed, 28 Oct 2020 09:00:30 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache content-length: - - '401' + - '414' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:10 GMT + - Wed, 28 Oct 2020 09:00:32 GMT expires: - '-1' pragma: @@ -5102,39 +4689,25 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:13 GMT + - Wed, 28 Oct 2020 09:00:36 GMT expires: - '-1' pragma: @@ -5166,25 +4739,25 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 response: body: - string: '{"value":[{"properties":{"created":"Fri, 21 Aug 2020 21:29:46 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Fri, - 21 Aug 2020 21:34:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Wed, 28 Oct 2020 08:55:46 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Wed, + 28 Oct 2020 09:00:30 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache content-length: - - '827' + - '853' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:14 GMT + - Wed, 28 Oct 2020 09:00:36 GMT expires: - '-1' pragma: @@ -5216,39 +4789,25 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:16 GMT + - Wed, 28 Oct 2020 09:00:38 GMT expires: - '-1' pragma: @@ -5282,12 +4841,12 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: string: '' @@ -5297,7 +4856,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:34:16 GMT + - Wed, 28 Oct 2020 09:00:39 GMT expires: - '-1' pragma: @@ -5309,7 +4868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -5327,39 +4886,25 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:20 GMT + - Wed, 28 Oct 2020 09:00:42 GMT expires: - '-1' pragma: @@ -5391,24 +4936,24 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 response: body: - string: '{"value":[{"properties":{"created":"Fri, 21 Aug 2020 21:29:46 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Wed, 28 Oct 2020 08:55:46 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache content-length: - - '425' + - '438' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:20 GMT + - Wed, 28 Oct 2020 09:00:43 GMT expires: - '-1' pragma: @@ -5440,39 +4985,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:22 GMT + - Wed, 28 Oct 2020 09:00:45 GMT expires: - '-1' pragma: @@ -5504,12 +5035,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/quotaMetrics?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/quotaMetrics?api-version=2020-03-01 response: body: string: '{"value":[{"name":"TotalMessages","currentValue":0,"maxValue":400000},{"name":"TotalDeviceCount","currentValue":0,"maxValue":1000000}]}' @@ -5521,7 +5052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:22 GMT + - Wed, 28 Oct 2020 09:00:46 GMT expires: - '-1' pragma: @@ -5553,39 +5084,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '24991' + - '1917' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:25 GMT + - Wed, 28 Oct 2020 09:00:49 GMT expires: - '-1' pragma: @@ -5617,12 +5134,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubStats?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubStats?api-version=2020-03-01 response: body: string: '{"totalDeviceCount":0,"enabledDeviceCount":0,"disabledDeviceCount":0}' @@ -5634,7 +5151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:25 GMT + - Wed, 28 Oct 2020 09:00:49 GMT expires: - '-1' pragma: @@ -5666,8 +5183,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -5681,7 +5198,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:34:26 GMT + - Wed, 28 Oct 2020 09:00:51 GMT expires: - '-1' pragma: @@ -5694,7 +5211,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -5705,14 +5222,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -5720,16 +5237,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:26 GMT + - Wed, 28 Oct 2020 09:00:52 GMT expires: - '-1' pragma: @@ -5763,25 +5280,25 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1887' + - '1905' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:27 GMT + - Wed, 28 Oct 2020 09:00:53 GMT expires: - '-1' pragma: @@ -5800,16 +5317,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwqmXw=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBy15Zk=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + [], "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -5825,39 +5342,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1514' + - '1540' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwqmXw=''}' + - '{''IF-MATCH'': ''AAAABBy15Zk=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwqmXw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:43 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:43 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:43 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:33:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:33:43 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy15Zk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:00:01 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:00:01 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:00:01 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:00:01 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:00:01 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:00:01 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:00:01 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:00:01 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmNlZmYwYTEtMDhkMS00ZTNkLTgxNDctZDA3NzkwNWE3MGM1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOWY5ODlmODAtMTMwYS00NjE4LTliZWItNzUxMjQxMGY0ODhj?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4791' + - '4877' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:34:29 GMT + - Wed, 28 Oct 2020 09:01:00 GMT expires: - '-1' pragma: @@ -5869,7 +5386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -5887,10 +5404,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmNlZmYwYTEtMDhkMS00ZTNkLTgxNDctZDA3NzkwNWE3MGM1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOWY5ODlmODAtMTMwYS00NjE4LTliZWItNzUxMjQxMGY0ODhj?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5902,7 +5419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:00 GMT + - Wed, 28 Oct 2020 09:01:32 GMT expires: - '-1' pragma: @@ -5934,23 +5451,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwsV3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy6s00=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2290' + - '2326' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:01 GMT + - Wed, 28 Oct 2020 09:01:33 GMT expires: - '-1' pragma: @@ -5982,8 +5499,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -5997,7 +5514,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:35:01 GMT + - Wed, 28 Oct 2020 09:01:35 GMT expires: - '-1' pragma: @@ -6010,7 +5527,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -6021,14 +5538,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -6036,16 +5553,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:02 GMT + - Wed, 28 Oct 2020 09:01:36 GMT expires: - '-1' pragma: @@ -6061,7 +5578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -6079,25 +5596,25 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwsV3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy6s00=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2290' + - '2326' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:02 GMT + - Wed, 28 Oct 2020 09:01:37 GMT expires: - '-1' pragma: @@ -6129,8 +5646,8 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -6144,7 +5661,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:35:02 GMT + - Wed, 28 Oct 2020 09:01:38 GMT expires: - '-1' pragma: @@ -6157,7 +5674,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -6168,14 +5685,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -6183,16 +5700,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:02 GMT + - Wed, 28 Oct 2020 09:01:40 GMT expires: - '-1' pragma: @@ -6226,25 +5743,25 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwsV3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy6s00=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2290' + - '2326' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:03 GMT + - Wed, 28 Oct 2020 09:01:41 GMT expires: - '-1' pragma: @@ -6276,8 +5793,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -6291,7 +5808,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:35:03 GMT + - Wed, 28 Oct 2020 09:01:43 GMT expires: - '-1' pragma: @@ -6304,7 +5821,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -6315,14 +5832,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -6330,16 +5847,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:04 GMT + - Wed, 28 Oct 2020 09:01:44 GMT expires: - '-1' pragma: @@ -6355,7 +5872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6373,25 +5890,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwsV3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy6s00=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2290' + - '2326' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:05 GMT + - Wed, 28 Oct 2020 09:01:45 GMT expires: - '-1' pragma: @@ -6423,8 +5940,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -6438,7 +5955,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:35:04 GMT + - Wed, 28 Oct 2020 09:01:47 GMT expires: - '-1' pragma: @@ -6451,7 +5968,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -6462,14 +5979,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -6477,16 +5994,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:05 GMT + - Wed, 28 Oct 2020 09:01:49 GMT expires: - '-1' pragma: @@ -6502,7 +6019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -6520,25 +6037,25 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwsV3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy6s00=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2290' + - '2326' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:06 GMT + - Wed, 28 Oct 2020 09:01:50 GMT expires: - '-1' pragma: @@ -6557,22 +6074,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwsV3w=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBy6s00=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [{"id": "46b58d76-d27e-4869-83c4-1ac7266c0a47", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + [], "serviceBusTopics": [], "eventHubs": [{"id": "aea49b1d-1a16-4174-941c-40037dea077d", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -6588,39 +6105,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2114' + - '2148' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwsV3w=''}' + - '{''IF-MATCH'': ''AAAABBy6s00=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwsV3w=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:34:39 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:34:39 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:34:39 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:34:39 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:34:39 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:34:39 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:34:39 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:34:39 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy6s00=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:01:11 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:01:11 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:01:11 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:01:11 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:01:11 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:01:11 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:01:11 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:01:11 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWE5NGNiZDQtYzc5Mi00NTI4LTk5MzYtMjhkNmE4MmNmYTU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZTAwYTYwYWYtN2RiYy00MGMwLWIyNmEtYjdjNTY5OTE3YWMz?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '5407' + - '5501' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:09 GMT + - Wed, 28 Oct 2020 09:01:57 GMT expires: - '-1' pragma: @@ -6650,10 +6167,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWE5NGNiZDQtYzc5Mi00NTI4LTk5MzYtMjhkNmE4MmNmYTU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZTAwYTYwYWYtN2RiYy00MGMwLWIyNmEtYjdjNTY5OTE3YWMz?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6665,7 +6182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:39 GMT + - Wed, 28 Oct 2020 09:02:28 GMT expires: - '-1' pragma: @@ -6697,23 +6214,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwtfBc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy8s/0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2822' + - '2866' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:40 GMT + - Wed, 28 Oct 2020 09:02:29 GMT expires: - '-1' pragma: @@ -6745,8 +6262,8 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -6760,7 +6277,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:35:40 GMT + - Wed, 28 Oct 2020 09:02:32 GMT expires: - '-1' pragma: @@ -6773,7 +6290,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -6784,14 +6301,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -6799,16 +6316,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:41 GMT + - Wed, 28 Oct 2020 09:02:34 GMT expires: - '-1' pragma: @@ -6842,25 +6359,25 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwtfBc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy8s/0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2822' + - '2866' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:41 GMT + - Wed, 28 Oct 2020 09:02:35 GMT expires: - '-1' pragma: @@ -6879,24 +6396,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwtfBc=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBy8s/0=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [{"id": "46b58d76-d27e-4869-83c4-1ac7266c0a47", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [{"id": "aea49b1d-1a16-4174-941c-40037dea077d", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": "route1", "source": "devicemessages", "condition": "true", "endpointNames": ["Event1"], "isEnabled": true}], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -6912,39 +6429,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2191' + - '2225' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwtfBc=''}' + - '{''IF-MATCH'': ''AAAABBy8s/0=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwtfBc=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:35:18 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:35:18 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:35:18 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:35:18 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:35:18 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:35:18 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:35:18 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:35:18 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBy8s/0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:02:08 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:02:08 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:02:08 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:02:08 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:02:08 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:02:08 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:02:08 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:02:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjBmMGIyZjgtYTFlMC00NjE2LWE0MDQtZjA5NmQ1OGI1NzBm?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWE3NDI4MGQtYzdmZi00NGZjLWJjMTktZTI0Y2I3YWI4MjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '5513' + - '5607' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:35:45 GMT + - Wed, 28 Oct 2020 09:02:42 GMT expires: - '-1' pragma: @@ -6974,10 +6491,57 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWE3NDI4MGQtYzdmZi00NGZjLWJjMTktZTI0Y2I3YWI4MjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 09:03:13 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s --en -c -e + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjBmMGIyZjgtYTFlMC00NjE2LWE0MDQtZjA5NmQ1OGI1NzBm?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWE3NDI4MGQtYzdmZi00NGZjLWJjMTktZTI0Y2I3YWI4MjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -6989,7 +6553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:14 GMT + - Wed, 28 Oct 2020 09:03:44 GMT expires: - '-1' pragma: @@ -7021,10 +6585,10 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjBmMGIyZjgtYTFlMC00NjE2LWE0MDQtZjA5NmQ1OGI1NzBm?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWE3NDI4MGQtYzdmZi00NGZjLWJjMTktZTI0Y2I3YWI4MjM4?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7036,7 +6600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:45 GMT + - Wed, 28 Oct 2020 09:04:14 GMT expires: - '-1' pragma: @@ -7068,23 +6632,23 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2928' + - '2972' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:46 GMT + - Wed, 28 Oct 2020 09:04:15 GMT expires: - '-1' pragma: @@ -7116,8 +6680,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -7131,7 +6695,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:36:46 GMT + - Wed, 28 Oct 2020 09:04:17 GMT expires: - '-1' pragma: @@ -7144,7 +6708,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -7155,14 +6719,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -7170,16 +6734,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:47 GMT + - Wed, 28 Oct 2020 09:04:17 GMT expires: - '-1' pragma: @@ -7195,7 +6759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -7213,25 +6777,25 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2928' + - '2972' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:47 GMT + - Wed, 28 Oct 2020 09:04:18 GMT expires: - '-1' pragma: @@ -7263,8 +6827,8 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -7278,7 +6842,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:36:47 GMT + - Wed, 28 Oct 2020 09:04:20 GMT expires: - '-1' pragma: @@ -7291,7 +6855,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -7302,14 +6866,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -7317,16 +6881,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:48 GMT + - Wed, 28 Oct 2020 09:04:21 GMT expires: - '-1' pragma: @@ -7342,7 +6906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 200 message: OK @@ -7360,25 +6924,25 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2928' + - '2972' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:48 GMT + - Wed, 28 Oct 2020 09:04:21 GMT expires: - '-1' pragma: @@ -7410,8 +6974,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -7425,7 +6989,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:36:48 GMT + - Wed, 28 Oct 2020 09:04:24 GMT expires: - '-1' pragma: @@ -7438,7 +7002,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -7449,14 +7013,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -7464,16 +7028,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:49 GMT + - Wed, 28 Oct 2020 09:04:25 GMT expires: - '-1' pragma: @@ -7489,7 +7053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -7507,25 +7071,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2928' + - '2972' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:49 GMT + - Wed, 28 Oct 2020 09:04:26 GMT expires: - '-1' pragma: @@ -7557,8 +7121,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -7572,7 +7136,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:36:50 GMT + - Wed, 28 Oct 2020 09:04:28 GMT expires: - '-1' pragma: @@ -7585,7 +7149,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -7596,14 +7160,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -7611,16 +7175,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:50 GMT + - Wed, 28 Oct 2020 09:04:29 GMT expires: - '-1' pragma: @@ -7654,25 +7218,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2928' + - '2972' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:50 GMT + - Wed, 28 Oct 2020 09:04:30 GMT expires: - '-1' pragma: @@ -7709,12 +7273,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/routing/routes/$testnew?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testnew?api-version=2020-03-01 response: body: string: '{"result":"true"}' @@ -7726,7 +7290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:51 GMT + - Wed, 28 Oct 2020 09:04:30 GMT expires: - '-1' pragma: @@ -7764,12 +7328,12 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/routing/routes/$testall?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testall?api-version=2020-03-01 response: body: string: '{"routes":[{"properties":{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}}]}' @@ -7781,7 +7345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:51 GMT + - Wed, 28 Oct 2020 09:04:32 GMT expires: - '-1' pragma: @@ -7797,7 +7361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' status: code: 200 message: OK @@ -7815,8 +7379,8 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -7830,7 +7394,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:36:52 GMT + - Wed, 28 Oct 2020 09:04:34 GMT expires: - '-1' pragma: @@ -7843,7 +7407,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -7854,14 +7418,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -7869,16 +7433,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:52 GMT + - Wed, 28 Oct 2020 09:04:36 GMT expires: - '-1' pragma: @@ -7912,25 +7476,25 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2928' + - '2972' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:52 GMT + - Wed, 28 Oct 2020 09:04:37 GMT expires: - '-1' pragma: @@ -7949,24 +7513,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwv0Ck=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzBUYg=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [{"id": "46b58d76-d27e-4869-83c4-1ac7266c0a47", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [{"id": "aea49b1d-1a16-4174-941c-40037dea077d", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": "route1", "source": "twinchangeevents", "condition": "true", "endpointNames": ["Event1"], "isEnabled": true}], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -7982,39 +7546,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2193' + - '2227' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwv0Ck=''}' + - '{''IF-MATCH'': ''AAAABBzBUYg=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0Ck=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:36:32 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:36:32 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:36:32 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:36:32 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:36:32 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:36:32 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:36:32 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:36:32 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzBUYg=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:03:42 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:03:42 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:03:42 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:03:42 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:03:42 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:03:42 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:03:42 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:03:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmVhZWU4NTAtZTNlMy00OTc2LWFhMGItNTYyOGUxYzgyZjZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2MwZDMzYTEtN2VjZC00YmY4LTg1NDItYzgzMWE2NzY2Y2Q2?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '5515' + - '5609' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:36:55 GMT + - Wed, 28 Oct 2020 09:04:44 GMT expires: - '-1' pragma: @@ -8044,10 +7608,10 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmVhZWU4NTAtZTNlMy00OTc2LWFhMGItNTYyOGUxYzgyZjZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2MwZDMzYTEtN2VjZC00YmY4LTg1NDItYzgzMWE2NzY2Y2Q2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8059,7 +7623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:37:26 GMT + - Wed, 28 Oct 2020 09:05:15 GMT expires: - '-1' pragma: @@ -8091,23 +7655,23 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0M8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzEjXk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2930' + - '2974' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:37:26 GMT + - Wed, 28 Oct 2020 09:05:16 GMT expires: - '-1' pragma: @@ -8139,8 +7703,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -8154,7 +7718,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:37:27 GMT + - Wed, 28 Oct 2020 09:05:19 GMT expires: - '-1' pragma: @@ -8167,7 +7731,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -8178,14 +7742,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -8193,16 +7757,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:37:28 GMT + - Wed, 28 Oct 2020 09:05:21 GMT expires: - '-1' pragma: @@ -8236,25 +7800,25 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0M8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzEjXk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2930' + - '2974' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:37:28 GMT + - Wed, 28 Oct 2020 09:05:22 GMT expires: - '-1' pragma: @@ -8273,22 +7837,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwv0M8=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzEjXk=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [{"id": "46b58d76-d27e-4869-83c4-1ac7266c0a47", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [{"id": "aea49b1d-1a16-4174-941c-40037dea077d", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -8304,39 +7868,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2076' + - '2110' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwv0M8=''}' + - '{''IF-MATCH'': ''AAAABBzEjXk=''}' ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwv0M8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:08 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:08 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:08 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:08 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:08 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:08 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:08 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVlX7i9IpVdtLotOWcJdrJwRi3OET1sItF1VpBGHtF8=;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzEjXk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:04:57 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:04:57 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:04:57 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:04:57 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:04:57 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:04:57 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:04:57 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:04:57 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uJKSmWG7GwxDuFKCYJNvYdJ2do1Aqz2Wi5uHfbm+rJ0=;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTliMDczY2MtNDM2OC00NjdlLThjMzEtZGM5YTBhZDgzMDQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjc5NjlmM2EtM2Q4OC00ZmRjLTk4ZTktY2NlN2YyMWJlYzk2?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '5407' + - '5501' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:37:31 GMT + - Wed, 28 Oct 2020 09:05:29 GMT expires: - '-1' pragma: @@ -8348,7 +7912,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -8366,10 +7930,10 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTliMDczY2MtNDM2OC00NjdlLThjMzEtZGM5YTBhZDgzMDQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjc5NjlmM2EtM2Q4OC00ZmRjLTk4ZTktY2NlN2YyMWJlYzk2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8381,7 +7945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:02 GMT + - Wed, 28 Oct 2020 09:06:01 GMT expires: - '-1' pragma: @@ -8413,23 +7977,23 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwwV48=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzHkuM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2822' + - '2866' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:02 GMT + - Wed, 28 Oct 2020 09:06:02 GMT expires: - '-1' pragma: @@ -8461,8 +8025,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -8476,7 +8040,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:38:03 GMT + - Wed, 28 Oct 2020 09:06:05 GMT expires: - '-1' pragma: @@ -8489,7 +8053,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -8500,14 +8064,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -8515,16 +8079,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:03 GMT + - Wed, 28 Oct 2020 09:06:06 GMT expires: - '-1' pragma: @@ -8540,7 +8104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -8558,25 +8122,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwwV48=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"46b58d76-d27e-4869-83c4-1ac7266c0a47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzHkuM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1mxvlaye.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"aea49b1d-1a16-4174-941c-40037dea077d","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2822' + - '2866' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:03 GMT + - Wed, 28 Oct 2020 09:06:07 GMT expires: - '-1' pragma: @@ -8595,19 +8159,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwwV48=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzHkuM=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -8623,39 +8187,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1664' + - '1680' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwwV48=''}' + - '{''IF-MATCH'': ''AAAABBzHkuM=''}' ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwwV48=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:43 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:43 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:43 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:37:43 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:37:43 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzHkuM=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:05:39 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:05:39 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:05:39 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:05:39 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:05:39 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:05:39 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:05:39 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:05:39 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2MyNTc0YTUtN2Y2OC00MjUwLWE4M2EtMzRkZGRkYTMxMDgy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzg0YmExY2MtYzc2Ny00YTlmLTk0ZmUtNDg2NWFjMzdmMzUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4969' + - '5045' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:06 GMT + - Wed, 28 Oct 2020 09:06:15 GMT expires: - '-1' pragma: @@ -8685,10 +8249,10 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2MyNTc0YTUtN2Y2OC00MjUwLWE4M2EtMzRkZGRkYTMxMDgy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzg0YmExY2MtYzc2Ny00YTlmLTk0ZmUtNDg2NWFjMzdmMzUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8700,7 +8264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:37 GMT + - Wed, 28 Oct 2020 09:06:45 GMT expires: - '-1' pragma: @@ -8732,23 +8296,23 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwxfrk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzJYo0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2419' + - '2445' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:37 GMT + - Wed, 28 Oct 2020 09:06:46 GMT expires: - '-1' pragma: @@ -8780,25 +8344,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2019-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2019-07-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwxfrk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzJYo0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2335' + - '2396' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:38 GMT + - Wed, 28 Oct 2020 09:06:50 GMT expires: - '-1' pragma: @@ -8830,8 +8394,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -8845,7 +8409,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:38:39 GMT + - Wed, 28 Oct 2020 09:06:53 GMT expires: - '-1' pragma: @@ -8858,7 +8422,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -8869,14 +8433,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -8884,16 +8448,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:39 GMT + - Wed, 28 Oct 2020 09:06:55 GMT expires: - '-1' pragma: @@ -8909,7 +8473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -8927,25 +8491,25 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwxfrk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzJYo0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2419' + - '2445' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:40 GMT + - Wed, 28 Oct 2020 09:06:55 GMT expires: - '-1' pragma: @@ -8964,20 +8528,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwxfrk=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzJYo0=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": "key", "value": "value", "endpointNames": ["events", "fake_endpoint"]}]}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -8993,26 +8557,26 @@ interactions: Connection: - keep-alive Content-Length: - - '1761' + - '1777' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwxfrk=''}' + - '{''IF-MATCH'': ''AAAABBzJYo0=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: '{"code":400131,"httpStatusCode":"BadRequest","message":"Enrichment has an undefined endpoint, Enrichment Key:key, EndpointName:fake_endpoint. If you contact a support representative please include this correlation identifier: - 470c79ce-6c5b-4bd2-b8f2-88759e1bee25, timestamp: 2020-08-21 21:38:42Z, errorcode: + e7be28e3-9c5d-480a-992d-c06479646bf9, timestamp: 2020-10-28 09:06:59Z, errorcode: IH400131."}' headers: cache-control: @@ -9022,7 +8586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:42 GMT + - Wed, 28 Oct 2020 09:06:59 GMT expires: - '-1' pragma: @@ -9052,8 +8616,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -9067,7 +8631,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:38:42 GMT + - Wed, 28 Oct 2020 09:07:00 GMT expires: - '-1' pragma: @@ -9080,7 +8644,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -9091,14 +8655,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -9106,16 +8670,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:42 GMT + - Wed, 28 Oct 2020 09:07:02 GMT expires: - '-1' pragma: @@ -9131,7 +8695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -9149,25 +8713,25 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwxfrk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzJYo0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2419' + - '2445' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:43 GMT + - Wed, 28 Oct 2020 09:07:03 GMT expires: - '-1' pragma: @@ -9186,20 +8750,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwxfrk=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzJYo0=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": "key", "value": "value", "endpointNames": ["events"]}]}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -9215,39 +8779,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1744' + - '1760' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwxfrk=''}' + - '{''IF-MATCH'': ''AAAABBzJYo0=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwxfrk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:17 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:17 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:17 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:17 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:17 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:17 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:17 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:17 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzJYo0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:06:25 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:06:25 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:06:25 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:06:25 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:06:25 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:06:25 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:06:25 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:06:25 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNmQzYTNlMTAtOWNkYS00YWM3LWJkZDgtNTA5NTJhNTA1Mjg0?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWU3MWI3ZDctY2NkYy00MGZmLTkxYTYtNmU3ZmQ2YjM5ZjE5?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '5042' + - '5118' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:38:46 GMT + - Wed, 28 Oct 2020 09:07:10 GMT expires: - '-1' pragma: @@ -9277,10 +8841,10 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNmQzYTNlMTAtOWNkYS00YWM3LWJkZDgtNTA5NTJhNTA1Mjg0?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWU3MWI3ZDctY2NkYy00MGZmLTkxYTYtNmU3ZmQ2YjM5ZjE5?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9292,7 +8856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:16 GMT + - Wed, 28 Oct 2020 09:07:42 GMT expires: - '-1' pragma: @@ -9324,23 +8888,23 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwyuUA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzKT8g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:18 GMT + - Wed, 28 Oct 2020 09:07:43 GMT expires: - '-1' pragma: @@ -9372,8 +8936,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -9387,7 +8951,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:39:18 GMT + - Wed, 28 Oct 2020 09:07:45 GMT expires: - '-1' pragma: @@ -9400,7 +8964,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -9411,14 +8975,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -9426,16 +8990,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:18 GMT + - Wed, 28 Oct 2020 09:07:48 GMT expires: - '-1' pragma: @@ -9451,7 +9015,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -9469,25 +9033,25 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwyuUA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzKT8g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:19 GMT + - Wed, 28 Oct 2020 09:07:49 GMT expires: - '-1' pragma: @@ -9519,8 +9083,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -9534,7 +9098,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:39:19 GMT + - Wed, 28 Oct 2020 09:07:50 GMT expires: - '-1' pragma: @@ -9547,7 +9111,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -9558,14 +9122,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -9573,16 +9137,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:19 GMT + - Wed, 28 Oct 2020 09:07:52 GMT expires: - '-1' pragma: @@ -9598,7 +9162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -9616,25 +9180,25 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwyuUA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzKT8g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:20 GMT + - Wed, 28 Oct 2020 09:07:53 GMT expires: - '-1' pragma: @@ -9653,20 +9217,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwyuUA=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzKT8g=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": "key", "value": "value", "endpointNames": ["events", "fake_endpoint"]}]}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -9682,26 +9246,26 @@ interactions: Connection: - keep-alive Content-Length: - - '1761' + - '1777' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwyuUA=''}' + - '{''IF-MATCH'': ''AAAABBzKT8g=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: '{"code":400131,"httpStatusCode":"BadRequest","message":"Enrichment has an undefined endpoint, Enrichment Key:key, EndpointName:fake_endpoint. If you contact a support representative please include this correlation identifier: - 6d727a63-90e3-44a6-9170-76f3fe6f5122, timestamp: 2020-08-21 21:39:22Z, errorcode: + f2e7dbe2-7dd7-4452-a056-3b4b5b67c039, timestamp: 2020-10-28 09:07:57Z, errorcode: IH400131."}' headers: cache-control: @@ -9711,7 +9275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:22 GMT + - Wed, 28 Oct 2020 09:07:57 GMT expires: - '-1' pragma: @@ -9723,7 +9287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 400 message: Bad Request @@ -9741,8 +9305,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -9756,7 +9320,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:39:22 GMT + - Wed, 28 Oct 2020 09:07:59 GMT expires: - '-1' pragma: @@ -9769,7 +9333,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -9780,14 +9344,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -9795,16 +9359,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:22 GMT + - Wed, 28 Oct 2020 09:08:01 GMT expires: - '-1' pragma: @@ -9820,7 +9384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -9838,25 +9402,25 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwyuUA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzKT8g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:22 GMT + - Wed, 28 Oct 2020 09:08:02 GMT expires: - '-1' pragma: @@ -9875,20 +9439,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASwyuUA=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzKT8g=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": "key", "value": "value", "endpointNames": ["events"]}]}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -9904,39 +9468,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1744' + - '1760' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASwyuUA=''}' + - '{''IF-MATCH'': ''AAAABBzKT8g=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASwyuUA=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:56 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:56 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:56 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:56 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:56 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:56 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:38:56 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:38:56 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzKT8g=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:07:21 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:07:21 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:07:21 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:07:21 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:07:21 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:07:21 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:07:21 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:07:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTMyODA5NDktOWFmNi00NDk1LTg0N2UtODkwNjE0YTk3MmM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjE0MWU4ZmYtNDk5NS00YTEzLTgxOWQtMGFjZjJkNzA0ZTIy?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '5042' + - '5118' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:25 GMT + - Wed, 28 Oct 2020 09:08:09 GMT expires: - '-1' pragma: @@ -9966,10 +9530,10 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTMyODA5NDktOWFmNi00NDk1LTg0N2UtODkwNjE0YTk3MmM3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjE0MWU4ZmYtNDk5NS00YTEzLTgxOWQtMGFjZjJkNzA0ZTIy?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9981,7 +9545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:56 GMT + - Wed, 28 Oct 2020 09:08:40 GMT expires: - '-1' pragma: @@ -10013,23 +9577,23 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw07EU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzM2VM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:57 GMT + - Wed, 28 Oct 2020 09:08:42 GMT expires: - '-1' pragma: @@ -10061,8 +9625,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -10076,7 +9640,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:39:57 GMT + - Wed, 28 Oct 2020 09:08:45 GMT expires: - '-1' pragma: @@ -10089,7 +9653,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -10100,14 +9664,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -10115,16 +9679,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:58 GMT + - Wed, 28 Oct 2020 09:08:46 GMT expires: - '-1' pragma: @@ -10140,7 +9704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -10158,25 +9722,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw07EU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzM2VM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:59 GMT + - Wed, 28 Oct 2020 09:08:47 GMT expires: - '-1' pragma: @@ -10208,8 +9772,8 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -10223,7 +9787,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:39:58 GMT + - Wed, 28 Oct 2020 09:08:49 GMT expires: - '-1' pragma: @@ -10236,7 +9800,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -10247,14 +9811,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -10262,16 +9826,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:58 GMT + - Wed, 28 Oct 2020 09:08:50 GMT expires: - '-1' pragma: @@ -10287,7 +9851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -10305,25 +9869,25 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw07EU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzM2VM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:39:59 GMT + - Wed, 28 Oct 2020 09:08:51 GMT expires: - '-1' pragma: @@ -10355,8 +9919,8 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -10370,7 +9934,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:39:59 GMT + - Wed, 28 Oct 2020 09:08:54 GMT expires: - '-1' pragma: @@ -10383,7 +9947,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -10394,14 +9958,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -10409,16 +9973,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:00 GMT + - Wed, 28 Oct 2020 09:08:54 GMT expires: - '-1' pragma: @@ -10434,7 +9998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -10452,25 +10016,25 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw07EU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzM2VM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2492' + - '2518' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:00 GMT + - Wed, 28 Oct 2020 09:08:55 GMT expires: - '-1' pragma: @@ -10489,20 +10053,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAAASw07EU=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAABBzM2VM=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "0af91d0f-2a34-4250-82f5-939328b63f47", + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "77d758e8-4014-4e91-b9e5-1b72714d0c14", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": - "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": + "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", + "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": []}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer1"}}, "messagingEndpoints": {"fileNotifications": + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT1M", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": @@ -10518,39 +10082,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1683' + - '1699' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAASw07EU=''}' + - '{''IF-MATCH'': ''AAAABBzM2VM=''}' ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw07EU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ed3d72f8-f108-436e-add1-1e135dcbba83-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:39:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:39:36 GMT"},{"KeyName":"owner-19282ebc-4a2a-478c-80fc-a8efa3f9883d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 21 Aug 2020 21:39:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:39:36 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:39:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:39:36 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 21 Aug 2020 21:39:36 GMT","ModifiedTime":"Fri, 21 Aug 2020 21:39:36 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzM2VM=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-46484b10-0ee2-4070-8fae-0018f1155926-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:08:19 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:08:19 GMT"},{"KeyName":"owner-a4f6db27-80f2-462b-af95-89a351a14f08-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 28 Oct 2020 09:08:19 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:08:19 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:08:19 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:08:19 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, + 28 Oct 2020 09:08:19 GMT","ModifiedTime":"Wed, 28 Oct 2020 09:08:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWRjNDE1ZmUtZjliZC00YWQ4LWE2MmYtY2EwYmExMzdhMjQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAxMDI0YWYtZDNkNy00MzFkLTk4NmMtNzE5NDE3MTZmNDU1?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: - - '4986' + - '5062' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:03 GMT + - Wed, 28 Oct 2020 09:09:02 GMT expires: - '-1' pragma: @@ -10562,7 +10126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4997' status: code: 201 message: Created @@ -10580,10 +10144,10 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWRjNDE1ZmUtZjliZC00YWQ4LWE2MmYtY2EwYmExMzdhMjQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAxMDI0YWYtZDNkNy00MzFkLTk4NmMtNzE5NDE3MTZmNDU1?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10595,7 +10159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:33 GMT + - Wed, 28 Oct 2020 09:09:34 GMT expires: - '-1' pragma: @@ -10627,23 +10191,23 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw1/O0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzO7Bw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2436' + - '2462' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:34 GMT + - Wed, 28 Oct 2020 09:09:35 GMT expires: - '-1' pragma: @@ -10675,8 +10239,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -10690,7 +10254,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:40:34 GMT + - Wed, 28 Oct 2020 09:09:38 GMT expires: - '-1' pragma: @@ -10703,7 +10267,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -10714,14 +10278,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -10729,16 +10293,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:35 GMT + - Wed, 28 Oct 2020 09:09:40 GMT expires: - '-1' pragma: @@ -10754,7 +10318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -10772,25 +10336,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASw1/O0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-471e063c9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBzO7Bw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3730278bbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2436' + - '2462' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:36 GMT + - Wed, 28 Oct 2020 09:09:40 GMT expires: - '-1' pragma: @@ -10826,18 +10390,18 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/failover?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/failover?api-version=2020-03-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10845,11 +10409,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:38 GMT + - Wed, 28 Oct 2020 09:09:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -10859,7 +10423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -10877,10 +10441,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10892,7 +10456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:40:54 GMT + - Wed, 28 Oct 2020 09:10:00 GMT expires: - '-1' pragma: @@ -10924,10 +10488,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10939,7 +10503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:41:24 GMT + - Wed, 28 Oct 2020 09:10:31 GMT expires: - '-1' pragma: @@ -10971,10 +10535,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10986,7 +10550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:41:54 GMT + - Wed, 28 Oct 2020 09:11:02 GMT expires: - '-1' pragma: @@ -11018,10 +10582,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11033,7 +10597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:42:24 GMT + - Wed, 28 Oct 2020 09:11:32 GMT expires: - '-1' pragma: @@ -11065,10 +10629,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11080,7 +10644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:42:54 GMT + - Wed, 28 Oct 2020 09:12:02 GMT expires: - '-1' pragma: @@ -11112,10 +10676,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11127,7 +10691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:43:25 GMT + - Wed, 28 Oct 2020 09:12:33 GMT expires: - '-1' pragma: @@ -11159,10 +10723,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11174,7 +10738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:43:55 GMT + - Wed, 28 Oct 2020 09:13:04 GMT expires: - '-1' pragma: @@ -11206,10 +10770,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11221,7 +10785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:44:26 GMT + - Wed, 28 Oct 2020 09:13:34 GMT expires: - '-1' pragma: @@ -11253,10 +10817,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11268,7 +10832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:44:55 GMT + - Wed, 28 Oct 2020 09:14:04 GMT expires: - '-1' pragma: @@ -11300,10 +10864,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11315,7 +10879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:45:26 GMT + - Wed, 28 Oct 2020 09:14:34 GMT expires: - '-1' pragma: @@ -11347,10 +10911,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11362,7 +10926,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:45:56 GMT + - Wed, 28 Oct 2020 09:15:06 GMT expires: - '-1' pragma: @@ -11394,10 +10958,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11409,7 +10973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:46:26 GMT + - Wed, 28 Oct 2020 09:15:36 GMT expires: - '-1' pragma: @@ -11441,10 +11005,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11456,7 +11020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:46:56 GMT + - Wed, 28 Oct 2020 09:16:07 GMT expires: - '-1' pragma: @@ -11488,10 +11052,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11503,7 +11067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:47:27 GMT + - Wed, 28 Oct 2020 09:16:39 GMT expires: - '-1' pragma: @@ -11535,10 +11099,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11550,7 +11114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:47:57 GMT + - Wed, 28 Oct 2020 09:17:10 GMT expires: - '-1' pragma: @@ -11582,10 +11146,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11597,7 +11161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:48:27 GMT + - Wed, 28 Oct 2020 09:17:41 GMT expires: - '-1' pragma: @@ -11629,10 +11193,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11644,7 +11208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:48:57 GMT + - Wed, 28 Oct 2020 09:18:11 GMT expires: - '-1' pragma: @@ -11676,10 +11240,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11691,7 +11255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:49:28 GMT + - Wed, 28 Oct 2020 09:18:41 GMT expires: - '-1' pragma: @@ -11723,10 +11287,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI5ZmU3ZGMtZTE1Zi00MzJlLWI0NzctMmU3YTNiNWQwZjA5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFiZTIxYzUtMzg1NS00MzkyLTgwNjYtMTFhODk5MmY2YjE0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11738,7 +11302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:49:57 GMT + - Wed, 28 Oct 2020 09:19:11 GMT expires: - '-1' pragma: @@ -11770,8 +11334,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: HEAD @@ -11785,7 +11349,7 @@ interactions: content-length: - '0' date: - - Fri, 21 Aug 2020 21:49:58 GMT + - Wed, 28 Oct 2020 09:19:13 GMT expires: - '-1' pragma: @@ -11798,7 +11362,7 @@ interactions: code: 204 message: No Content - request: - body: '{"name": "iot-hub-for-test-11"}' + body: '{"name": "iot-hub-for-test-11000003"}' headers: Accept: - application/json @@ -11809,14 +11373,14 @@ interactions: Connection: - keep-alive Content-Length: - - '31' + - '44' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -11824,16 +11388,16 @@ interactions: response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11'' is not available"}' + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '111' + - '124' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:49:58 GMT + - Wed, 28 Oct 2020 09:19:15 GMT expires: - '-1' pragma: @@ -11849,7 +11413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 200 message: OK @@ -11867,25 +11431,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASxD2fI=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-f728c0a696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBznZJs=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3c50849523.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2436' + - '2462' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:49:59 GMT + - Wed, 28 Oct 2020 09:19:16 GMT expires: - '-1' pragma: @@ -11917,39 +11481,25 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0VSfk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAMErup0=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"4b7391c6-0e52-4226-af5b-bf287993966a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAC9eYRs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAB0dAlo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbYc=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{"!iot-device-group-names":"[\"andbuc\"]"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAADADbWA=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARLK5io=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"e4e13080-39e6-4265-a5cb-745435d7672d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliespnptesthub","name":"iliespnptesthub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAEwks0g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliespnptesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliespnptesthub","endpoint":"sb://iothub-ns-iliespnpte-3804710-5debb458ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PnPTest03","name":"PnPTest03","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAFdIMtQ=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PnPTest03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pnptest03","endpoint":"sb://iothub-ns-pnptest03-3839987-01f835cd27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/az-cli-int-test-hub","name":"az-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAAAF5Lh6E=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"az-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"az-cli-int-test-hub","endpoint":"sb://iothub-ns-az-cli-int-3855542-409b4f955c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myappendiotsolution/providers/Microsoft.Devices/IotHubs/myappendiothub","name":"myappendiothub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"myappendiotsolution","etag":"AAAAAMAjhNE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"myappendiothub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"myappendiothub","endpoint":"sb://iothub-ns-myappendio-3997298-fe0f53b2bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-iot-rg/providers/Microsoft.Devices/IotHubs/sapan-cli-test-iot-1","name":"sapan-cli-test-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"sapan-iot-rg","etag":"AAAAAMZXDZY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-cli-test-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-cli-test-iot-1","endpoint":"sb://iothub-ns-sapan-cli-4004826-b8866a91b4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAAAOUw9i4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-fb03bca692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"badtesting","source":"DeviceMessages","condition":"some.bad.body","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-endpoint-hub","name":"rk-endpoint-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"CanDelete":"True"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAARtZbas=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-endpoint-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-endpoint-hub","endpoint":"sb://iothub-ns-rk-endpoin-4133712-812b29d7cf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=queue-1","name":"queue-endpoint","id":"d7f50737-d5e6-4c00-9825-715bb3c60643","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rk-iot-rg;SharedAccessKey=****;EntityPath=topic-1","name":"topic-endpoint","id":"badc5afc-ce3f-4218-8bce-b8126df85333","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAASxD2fI=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-4157375-f728c0a696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"0af91d0f-2a34-4250-82f5-939328b63f47","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABBznZJs=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11jqg5yn","endpoint":"sb://iothub-ns-iot-hub-fo-5563529-3c50849523.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"77d758e8-4014-4e91-b9e5-1b72714d0c14","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '25540' + - '2474' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:50:01 GMT + - Wed, 28 Oct 2020 09:19:19 GMT expires: - '-1' pragma: @@ -11983,18 +11533,18 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2020-03-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjRhZmJkMTgtOGMxNy00OTMzLWJlOTMtYzZhODg1MDhkNTc1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGUxODYzOGYtOTc2Ny00ZDdkLTg2NDItZmNiY2I1YTkxNjQ1?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -12002,11 +11552,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:50:02 GMT + - Wed, 28 Oct 2020 09:19:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjRhZmJkMTgtOGMxNy00OTMzLWJlOTMtYzZhODg1MDhkNTc1?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGUxODYzOGYtOTc2Ny00ZDdkLTg2NDItZmNiY2I1YTkxNjQ1?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -12034,10 +11584,10 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.11.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjRhZmJkMTgtOGMxNy00OTMzLWJlOTMtYzZhODg1MDhkNTc1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGUxODYzOGYtOTc2Ny00ZDdkLTg2NDItZmNiY2I1YTkxNjQ1?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -12049,7 +11599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Aug 2020 21:50:19 GMT + - Wed, 28 Oct 2020 09:19:37 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py index a790006c562..620c25d623c 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py @@ -20,13 +20,13 @@ def __init__(self, method_name): @ResourceGroupPreparer(location='westus2') @StorageAccountPreparer() def test_iot_hub(self, resource_group, resource_group_location, storage_account): - hub = 'iot-hub-for-test-11' + hub = self.create_random_name(prefix='iot-hub-for-test-11', length=32) rg = resource_group location = resource_group_location - containerName = 'iothubcontainer1' + containerName = self.create_random_name(prefix='iothubcontainer1', length=24) storageConnectionString = self._get_azurestorage_connectionstring(rg, containerName, storage_account) ehConnectionString = self._get_eventhub_connectionstring(rg) - subscription_id = self._get_current_subscription() + subscription_id = self.get_subscription_id() # Test hub life cycle in free tier self.cmd('iot hub create -n {0} -g {1} --sku F1'.format(hub, rg), expect_failure=True) @@ -397,7 +397,7 @@ def test_iot_hub(self, resource_group, resource_group_location, storage_account) @StorageAccountPreparer() def test_identity_hub(self, resource_group, resource_group_location, storage_account): # Test IoT Hub create with identity - subscription_id = self._get_current_subscription() + subscription_id = self.get_subscription_id() rg = resource_group location = resource_group_location @@ -518,8 +518,8 @@ def test_identity_hub(self, resource_group, resource_group_location, storage_acc .format(private_endpoint_type, private_endpoint_name, identity_hub, rg)) def _get_eventhub_connectionstring(self, rg): - ehNamespace = 'ehNamespaceiothubfortest1' - eventHub = 'eventHubiothubfortest' + ehNamespace = self.create_random_name(prefix='ehNamespaceiothubfortest1', length=32) + eventHub = self.create_random_name(prefix='eventHubiothubfortest', length=32) eventHubPolicy = 'eventHubPolicyiothubfortest' eventHubPolicyRight = 'Send' @@ -544,7 +544,3 @@ def _get_azurestorage_connectionstring(self, rg, container_name, storage_name): output = self.cmd('storage account show-connection-string --resource-group {0} --name {1}' .format(rg, storage_name)) return output.get_output_in_json()['connectionString'] - - def _get_current_subscription(self): - output = self.cmd('account show') - return output.get_output_in_json()['id'] diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/_validators.py b/src/azure-cli/azure/cli/command_modules/keyvault/_validators.py index 99222d59f6e..a4a1d2dbfb4 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/keyvault/_validators.py @@ -16,7 +16,7 @@ from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.cli.core.commands.validators import validate_tags -from azure.cli.core.azclierror import RequiredArgumentMissingError +from azure.cli.core.azclierror import InvalidArgumentValueError, RequiredArgumentMissingError secret_text_encoding_values = ['utf-8', 'utf-16le', 'utf-16be', 'ascii'] @@ -296,6 +296,9 @@ def validate_deleted_vault_or_hsm_name(cmd, ns): vault_name = getattr(ns, 'vault_name', None) hsm_name = getattr(ns, 'hsm_name', None) + if hsm_name: + raise InvalidArgumentValueError('Operation "purge" has not been supported for HSM.') + if not vault_name and not hsm_name: raise CLIError('Please specify --vault-name or --hsm-name.') diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/custom.py b/src/azure-cli/azure/cli/command_modules/keyvault/custom.py index f194417eea2..059b72ddcf4 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/custom.py +++ b/src/azure-cli/azure/cli/command_modules/keyvault/custom.py @@ -23,6 +23,7 @@ from azure.cli.command_modules.keyvault.security_domain.sp800_108 import KDF from azure.cli.command_modules.keyvault.security_domain.utils import Utils from azure.cli.core import telemetry +from azure.cli.core.azclierror import InvalidArgumentValueError from azure.cli.core.profiles import ResourceType, AZURE_API_PROFILES, SDKProfile from azure.cli.core.util import sdk_no_wait from azure.graphrbac.models import GraphErrorException @@ -217,7 +218,8 @@ def delete_vault_or_hsm(cmd, client, resource_group_name=None, vault_name=None, ) -def purge_vault_or_hsm(cmd, client, location=None, vault_name=None, hsm_name=None, no_wait=False): +def purge_vault_or_hsm(cmd, client, location=None, vault_name=None, hsm_name=None, # pylint: disable=unused-argument + no_wait=False): if is_azure_stack_profile(cmd) or vault_name: return sdk_no_wait( no_wait, @@ -225,10 +227,7 @@ def purge_vault_or_hsm(cmd, client, location=None, vault_name=None, hsm_name=Non location=location, vault_name=vault_name ) - - assert hsm_name - hsm_client = get_client_factory(ResourceType.MGMT_KEYVAULT, Clients.managed_hsms)(cmd.cli_ctx, None) - return hsm_client.purge_deleted(rlocation=location, name=hsm_name) + return None def list_deleted_vault_or_hsm(cmd, client, resource_type=None): @@ -236,19 +235,10 @@ def list_deleted_vault_or_hsm(cmd, client, resource_type=None): return client.list_deleted() if resource_type is None: - hsm_client = get_client_factory(ResourceType.MGMT_KEYVAULT, Clients.managed_hsms)(cmd.cli_ctx, None) - deleted_resources = [] - try: - deleted_resources.extend(client.list_deleted()) - deleted_resources.extend(hsm_client.list_deleted()) - except: # pylint: disable=bare-except - pass - - return deleted_resources + return client.list_deleted() if resource_type == 'hsm': - hsm_client = get_client_factory(ResourceType.MGMT_KEYVAULT, Clients.managed_hsms)(cmd.cli_ctx, None) - return hsm_client.list_deleted() + raise InvalidArgumentValueError('Operation "list-deleted" has not been supported for HSM.') if resource_type == 'vault': return client.list_deleted() diff --git a/src/azure-cli/azure/cli/command_modules/policyinsights/tests/latest/test_policyinsights_scenario.py b/src/azure-cli/azure/cli/command_modules/policyinsights/tests/latest/test_policyinsights_scenario.py index 8ec5475e912..3f593b5b37e 100644 --- a/src/azure-cli/azure/cli/command_modules/policyinsights/tests/latest/test_policyinsights_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/policyinsights/tests/latest/test_policyinsights_scenario.py @@ -441,7 +441,7 @@ def test_policy_insights_remediation_reevaluate(self, resource_group_location, s self.cmd('policy remediation show -n {rn} -g {rg}', checks=[ self.check('name', '{rn}'), - self.check('provisioningState', 'Evaluating'), + self.check_pattern('provisioningState', '(?:Evaluating|Accepted)'), self.check('resourceGroup', '{rg}'), self.check('policyAssignmentId', '{pid}'), self.check('deploymentStatus.totalDeployments', 0), diff --git a/src/azure-cli/azure/cli/command_modules/resource/_packing_engine.py b/src/azure-cli/azure/cli/command_modules/resource/_packing_engine.py index e6ff89d1c2a..cbc2c54914c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_packing_engine.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_packing_engine.py @@ -3,9 +3,10 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- import os +import re import json from knack.util import CLIError -from azure.cli.core.util import read_file_content +from azure.cli.core.util import read_file_content, shell_safe_json_parse from azure.cli.command_modules.resource.custom import _remove_comments_from_json from azure.cli.core.profiles import ResourceType, get_sdk @@ -23,6 +24,28 @@ def __init__(self, root_template_directory): self.Artifact = [] +# pylint: disable=redefined-outer-name +def process_template(template, preserve_order=True, file_path=None): + from jsmin import jsmin + + # When commenting at the bottom of all elements in a JSON object, jsmin has a bug that will wrap lines. + # It will affect the subsequent multi-line processing logic, so deal with this situation in advance here. + template = re.sub(r'(^[\t ]*//[\s\S]*?\n)|(^[\t ]*/\*{1,2}[\s\S]*?\*/)', '', template, flags=re.M) + minified = jsmin(template) + + # Get rid of extra spaces. + result = re.sub(r'\s\s+', ' ', minified, flags=re.DOTALL) + + try: + return shell_safe_json_parse(result, preserve_order) + except CLIError: + # Because the processing of removing comments and compression will lead to misplacement of error location, + # so the error message should be wrapped. + if file_path: + raise CLIError("Failed to parse '{}', please check whether it is a valid JSON format".format(file_path)) + raise CLIError("Failed to parse the JSON data, please check whether it is a valid JSON format") + + def pack(cmd, template_file): """ Packs the specified template and its referenced artifacts for use in a Template Spec. @@ -32,8 +55,7 @@ def pack(cmd, template_file): root_template_file_path = os.path.abspath(template_file) context = PackingContext(os.path.dirname(root_template_file_path)) template_content = read_file_content(template_file) - sanitized_template = _remove_comments_from_json(template_content) - template_json = json.loads(json.dumps(sanitized_template)) + template_json = json.loads(json.dumps(process_template(template_content))) _pack_artifacts(cmd, root_template_file_path, context) return PackagedTemplate(template_json, getattr(context, 'Artifact')) @@ -54,8 +76,7 @@ def _pack_artifacts(cmd, template_abs_file_path, context): try: context.CurrentDirectory = os.path.dirname(template_abs_file_path) template_content = read_file_content(template_abs_file_path) - artifactable_template_obj = sanitized_template = _remove_comments_from_json(template_content) - template_json = json.loads(json.dumps(sanitized_template)) + artifactable_template_obj = _remove_comments_from_json(template_content) template_link_to_artifact_objs = _get_template_links_to_artifacts(cmd, artifactable_template_obj, includeNested=True) @@ -94,8 +115,7 @@ def _pack_artifacts(cmd, template_abs_file_path, context): TemplateSpecTemplateArtifact = get_sdk(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_TEMPLATESPECS, 'TemplateSpecTemplateArtifact', mod='models') template_content = read_file_content(abs_local_path) - sanitized_template = _remove_comments_from_json(template_content) - template_json = json.loads(json.dumps(sanitized_template)) + template_json = json.loads(json.dumps(process_template(template_content))) artifact = TemplateSpecTemplateArtifact(path=as_relative_path, template=template_json) context.Artifact.append(artifact) finally: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_template_specs.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_template_specs.yaml index 0ad4b5a622a..57b07d4602c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_template_specs.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_create_template_specs.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f -d --description --version-description User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:36 GMT + - Mon, 02 Nov 2020 15:09:11 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f -d --description --version-description User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:36 GMT + - Mon, 02 Nov 2020 15:09:11 GMT expires: - '-1' pragma: @@ -113,7 +113,7 @@ interactions: - -g -n -v -l -f -d --description --version-description User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -122,8 +122,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:04:39.1003262Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:04:39.1003262Z\"\r\n + \"2020-11-02T15:09:13.7347983Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:13.7347983Z\"\r\n \ },\r\n \"properties\": {\r\n \"displayName\": \"create-spec000003\",\r\n \ \"description\": \"AzCLI test root template spec\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-create-template-spec000002\",\r\n @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:38 GMT + - Mon, 02 Nov 2020 15:09:13 GMT expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: - -g -n -v -l -f -d --description --version-description User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -233,8 +233,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:04:40.4403293Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:04:40.4403293Z\"\r\n + \"2020-11-02T15:09:14.824934Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:14.824934Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [\r\n {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -356,11 +356,11 @@ interactions: cache-control: - no-cache content-length: - - '9426' + - '9424' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:40 GMT + - Mon, 02 Nov 2020 15:09:14 GMT expires: - '-1' pragma: @@ -391,14 +391,14 @@ interactions: - -g -n -v -f --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001","name":"cli_test_template_specs000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-12T03:04:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001","name":"cli_test_template_specs000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-02T15:09:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -407,7 +407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:41 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -436,7 +436,7 @@ interactions: - -g -n -v -f --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -445,8 +445,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:04:39.1003262Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:04:40.4403293Z\"\r\n + \"2020-11-02T15:09:13.7347983Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:14.824934Z\"\r\n \ },\r\n \"properties\": {\r\n \"displayName\": \"create-spec000003\",\r\n \ \"description\": \"AzCLI test root template spec\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-create-template-spec000002\",\r\n @@ -455,11 +455,11 @@ interactions: cache-control: - no-cache content-length: - - '819' + - '818' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:41 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -548,7 +548,7 @@ interactions: - -g -n -v -f --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -557,8 +557,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:04:40.4403293Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:04:42.3695799Z\"\r\n + \"2020-11-02T15:09:14.824934Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:16.6868478Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [\r\n {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -679,11 +679,11 @@ interactions: cache-control: - no-cache content-length: - - '9362' + - '9361' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:04:41 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -716,7 +716,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -730,7 +730,7 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 03:04:44 GMT + - Mon, 02 Nov 2020 15:09:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_template_spec.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_template_spec.yaml index cd5458d95a6..b9f544ae8af 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_template_spec.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_delete_template_spec.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:01 GMT + - Mon, 02 Nov 2020 15:09:11 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:01 GMT + - Mon, 02 Nov 2020 15:09:11 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:45:03.2513917Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:45:03.2513917Z\"\r\n + \"2020-11-02T15:09:13.8074161Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:13.8074161Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000002\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:03 GMT + - Mon, 02 Nov 2020 15:09:13 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -186,8 +186,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:45:04.3675163Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:45:04.3675163Z\"\r\n + \"2020-11-02T15:09:15.0825395Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.0825395Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -214,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:04 GMT + - Mon, 02 Nov 2020 15:09:14 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: - --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -254,8 +254,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:45:04.3675163Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:45:04.3675163Z\"\r\n + \"2020-11-02T15:09:15.0825395Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.0825395Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -282,7 +282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:05 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -315,7 +315,7 @@ interactions: - --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -324,8 +324,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:45:03.2513917Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:45:04.3675163Z\"\r\n + \"2020-11-02T15:09:13.8074161Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.0825395Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000002\"\r\n}" headers: @@ -336,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:06 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -371,7 +371,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -385,7 +385,7 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 03:45:07 GMT + - Mon, 02 Nov 2020 15:09:18 GMT expires: - '-1' pragma: @@ -416,7 +416,7 @@ interactions: - -g User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -432,7 +432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:07 GMT + - Mon, 02 Nov 2020 15:09:18 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -475,7 +475,7 @@ interactions: cache-control: - no-cache date: - - Mon, 12 Oct 2020 03:45:08 GMT + - Mon, 02 Nov 2020 15:09:19 GMT expires: - '-1' pragma: @@ -504,7 +504,7 @@ interactions: - -g User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -520,7 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:45:09 GMT + - Mon, 02 Nov 2020 15:09:20 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_template_spec.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_template_spec.yaml index 4ce8986c0a8..e46ad009f7c 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_template_spec.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_list_template_spec.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:42:59 GMT + - Mon, 02 Nov 2020 15:09:12 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:42:59 GMT + - Mon, 02 Nov 2020 15:09:12 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:00.6966008Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:00.6966008Z\"\r\n + \"2020-11-02T15:09:15.0098899Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.0098899Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000002/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000003\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:01 GMT + - Mon, 02 Nov 2020 15:09:14 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -186,8 +186,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:01.8867402Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:01.8867402Z\"\r\n + \"2020-11-02T15:09:16.4299906Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:16.4299906Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -214,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:02 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -263,7 +263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:02 GMT + - Mon, 02 Nov 2020 15:09:16 GMT expires: - '-1' pragma: @@ -292,7 +292,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -310,7 +310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:02 GMT + - Mon, 02 Nov 2020 15:09:16 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -352,8 +352,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:04.2037759Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:04.2037759Z\"\r\n + \"2020-11-02T15:09:18.7561971Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:18.7561971Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000001/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000003\"\r\n}" headers: @@ -364,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:04 GMT + - Mon, 02 Nov 2020 15:09:18 GMT expires: - '-1' pragma: @@ -408,7 +408,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -417,8 +417,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:05.3689355Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:05.3689355Z\"\r\n + \"2020-11-02T15:09:19.8062706Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:19.8062706Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -445,7 +445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:05 GMT + - Mon, 02 Nov 2020 15:09:19 GMT expires: - '-1' pragma: @@ -476,7 +476,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:06 GMT + - Mon, 02 Nov 2020 15:09:19 GMT expires: - '-1' pragma: @@ -523,7 +523,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -532,8 +532,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:04.2037759Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:05.3689355Z\"\r\n + \"2020-11-02T15:09:18.7561971Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:19.8062706Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000001/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000003\"\r\n}" headers: @@ -544,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:06 GMT + - Mon, 02 Nov 2020 15:09:20 GMT expires: - '-1' pragma: @@ -590,7 +590,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -599,8 +599,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:08.3845372Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:08.3845372Z\"\r\n + \"2020-11-02T15:09:22.3063323Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:22.3063323Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -627,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:08 GMT + - Mon, 02 Nov 2020 15:09:21 GMT expires: - '-1' pragma: @@ -658,7 +658,7 @@ interactions: - -g User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -667,9 +667,9 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \ \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-10-12T03:43:04.2037759Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:18.7561971Z\",\r\n \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:08.3845372Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:22.3063323Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000001/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000003\"\r\n }\r\n ]\r\n}" @@ -681,7 +681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:09 GMT + - Mon, 02 Nov 2020 15:09:23 GMT expires: - '-1' pragma: @@ -714,7 +714,7 @@ interactions: - -g User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -723,9 +723,9 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \ \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-10-12T03:43:00.6966008Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:15.0098899Z\",\r\n \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:01.8867402Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:16.4299906Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000002/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000003\"\r\n }\r\n ]\r\n}" @@ -737,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:10 GMT + - Mon, 02 Nov 2020 15:09:24 GMT expires: - '-1' pragma: @@ -770,7 +770,7 @@ interactions: - -g -n User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -779,9 +779,9 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \ \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-10-12T03:43:05.3689355Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:19.8062706Z\",\r\n \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:05.3689355Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:19.8062706Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -802,9 +802,9 @@ interactions: \ \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": - \"User\",\r\n \"createdAt\": \"2020-10-12T03:43:08.3845372Z\",\r\n + \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:22.3063323Z\",\r\n \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:08.3845372Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:22.3063323Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -832,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:10 GMT + - Mon, 02 Nov 2020 15:09:23 GMT expires: - '-1' pragma: @@ -863,7 +863,7 @@ interactions: - keep-alive User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -872,28 +872,36 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \ \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-10-12T03:43:00.6966008Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:15.0098899Z\",\r\n \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:01.8867402Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:16.4299906Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000002/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-list-template-spec000003\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n - \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-10-12T03:43:04.2037759Z\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:18.7561971Z\",\r\n \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": - \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:08.3845372Z\"\r\n + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:22.3063323Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_list000001/providers/Microsoft.Resources/templateSpecs/cli-test-list-template-spec000003\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": - \"cli-test-list-template-spec000003\"\r\n }\r\n ]\r\n}" + \"cli-test-list-template-spec000003\"\r\n },\r\n {\r\n \"location\": + \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n + \ \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-11-02T15:09:23.8988115Z\",\r\n + \ \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n \"lastModifiedByType\": + \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:25.0388494Z\"\r\n + \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specsbbxckfjjjntrtnd7xqqizma35mlouukb7tgp2jefhqlltfgwxqlf/providers/Microsoft.Resources/templateSpecs/cli-test-update-template-specehbijo3m37ds7kvet7elgj4lq7oajzq\",\r\n + \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": + \"cli-test-update-template-specehbijo3m37ds7kvet7elgj4lq7oajzq\"\r\n }\r\n + \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '1586' + - '2368' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:11 GMT + - Mon, 02 Nov 2020 15:09:25 GMT expires: - '-1' pragma: @@ -928,7 +936,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -942,7 +950,7 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 03:43:14 GMT + - Mon, 02 Nov 2020 15:09:27 GMT expires: - '-1' pragma: @@ -975,7 +983,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -989,7 +997,7 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 03:43:17 GMT + - Mon, 02 Nov 2020 15:09:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_deployment_ts.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_deployment_ts.yaml index d0bdc5bc7be..9d2f452fff7 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_deployment_ts.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_deployment_ts.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:34 GMT + - Mon, 02 Nov 2020 15:12:04 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:34 GMT + - Mon, 02 Nov 2020 15:12:04 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:47:36.3926996Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:47:36.3926996Z\"\r\n + \"2020-11-02T15:12:07.3408104Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:12:07.3408104Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-resource-group-ts-deploy000002\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:36 GMT + - Mon, 02 Nov 2020 15:12:06 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -186,8 +186,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:47:37.5027929Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:47:37.5027929Z\"\r\n + \"2020-11-02T15:12:08.2958905Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:12:08.2958905Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -214,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:37 GMT + - Mon, 02 Nov 2020 15:12:07 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: - --resource-group --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -272,43 +272,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:38 GMT + - Mon, 02 Nov 2020 15:12:08 GMT expires: - '-1' pragma: @@ -337,7 +337,7 @@ interactions: - --resource-group --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -346,8 +346,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:47:37.5027929Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:47:37.5027929Z\"\r\n + \"2020-11-02T15:12:08.2958905Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:12:08.2958905Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -374,7 +374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:38 GMT + - Mon, 02 Nov 2020 15:12:08 GMT expires: - '-1' pragma: @@ -413,23 +413,23 @@ interactions: - --resource-group --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:40.1705177Z","duration":"PT0S","correlationId":"24f52c4e-64bb-4db1-9ed7-6333ba846804","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:10.961863Z","duration":"PT0S","correlationId":"44a069e9-ef68-48c1-8a20-654177524884","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' headers: cache-control: - no-cache content-length: - - '1303' + - '1302' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:40 GMT + - Mon, 02 Nov 2020 15:12:10 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: - --resource-group -n --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -489,43 +489,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:40 GMT + - Mon, 02 Nov 2020 15:12:11 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: - --resource-group -n --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -563,8 +563,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:47:37.5027929Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:47:37.5027929Z\"\r\n + \"2020-11-02T15:12:08.2958905Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:12:08.2958905Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -591,7 +591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:41 GMT + - Mon, 02 Nov 2020 15:12:11 GMT expires: - '-1' pragma: @@ -630,14 +630,14 @@ interactions: - --resource-group -n --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:42.7427219Z","duration":"PT0S","correlationId":"09783478-10dd-4c52-ac73-cf3b823772ff","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:13.5449594Z","duration":"PT0S","correlationId":"5bad1140-1a44-4747-95a3-58681b33e558","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' headers: cache-control: - no-cache @@ -646,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:43 GMT + - Mon, 02 Nov 2020 15:12:13 GMT expires: - '-1' pragma: @@ -685,17 +685,17 @@ interactions: - --resource-group -n --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-12T14:47:44.4518531Z","duration":"PT0.9969401S","correlationId":"275fdfe1-ab95-48fa-9eee-5762d13fd430","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-11-02T15:12:14.9469986Z","duration":"PT0.7504821S","correlationId":"0ab37024-3e7e-4fc4-9800-3d475feca75c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003/operationStatuses/08585990928220227028?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003/operationStatuses/08585972769512810988?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -703,7 +703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:47:44 GMT + - Mon, 02 Nov 2020 15:12:15 GMT expires: - '-1' pragma: @@ -732,9 +732,9 @@ interactions: - --resource-group -n --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585990928220227028?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585972769512810988?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -746,7 +746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:14 GMT + - Mon, 02 Nov 2020 15:12:45 GMT expires: - '-1' pragma: @@ -775,27 +775,27 @@ interactions: - --resource-group -n --template-spec --parameters User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:51.9597482Z","duration":"PT8.5048352S","correlationId":"275fdfe1-ab95-48fa-9eee-5762d13fd430","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"29e92542-1189-445b-9d8b-fd9e5538a9f5","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:18.01465Z","duration":"PT3.8181335S","correlationId":"0ab37024-3e7e-4fc4-9800-3d475feca75c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"6712ab2c-d163-4a44-9460-f5325c47c97b","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' headers: cache-control: - no-cache content-length: - - '5887' + - '5885' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:15 GMT + - Mon, 02 Nov 2020 15:12:45 GMT expires: - '-1' pragma: @@ -824,29 +824,29 @@ interactions: - --resource-group User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/?api-version=2020-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:51.9597482Z","duration":"PT8.5048352S","correlationId":"275fdfe1-ab95-48fa-9eee-5762d13fd430","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"29e92542-1189-445b-9d8b-fd9e5538a9f5","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:18.01465Z","duration":"PT3.8181335S","correlationId":"0ab37024-3e7e-4fc4-9800-3d475feca75c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"6712ab2c-d163-4a44-9460-f5325c47c97b","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}]}' headers: cache-control: - no-cache content-length: - - '5899' + - '5897' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:16 GMT + - Mon, 02 Nov 2020 15:12:47 GMT expires: - '-1' pragma: @@ -875,29 +875,29 @@ interactions: - --resource-group --filter User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/?$filter=provisioningState%20eq%20%27Succeeded%27&api-version=2020-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:51.9597482Z","duration":"PT8.5048352S","correlationId":"275fdfe1-ab95-48fa-9eee-5762d13fd430","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"29e92542-1189-445b-9d8b-fd9e5538a9f5","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:18.01465Z","duration":"PT3.8181335S","correlationId":"0ab37024-3e7e-4fc4-9800-3d475feca75c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"6712ab2c-d163-4a44-9460-f5325c47c97b","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}]}' headers: cache-control: - no-cache content-length: - - '5899' + - '5897' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:16 GMT + - Mon, 02 Nov 2020 15:12:47 GMT expires: - '-1' pragma: @@ -926,29 +926,29 @@ interactions: - --resource-group -n User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:51.9597482Z","duration":"PT8.5048352S","correlationId":"275fdfe1-ab95-48fa-9eee-5762d13fd430","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"29e92542-1189-445b-9d8b-fd9e5538a9f5","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny - all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow - outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"09c6bf59-eb08-450c-813e-0a9f3d381284\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003","name":"azure-cli-resource-group-deployment000003","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:18.01465Z","duration":"PT3.8181335S","correlationId":"0ab37024-3e7e-4fc4-9800-3d475feca75c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"6712ab2c-d163-4a44-9460-f5325c47c97b","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound"}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound"}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny + all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound"}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound"}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow + outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound"}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"58df26de-764c-4ae0-89a0-a4b206faf004\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' headers: cache-control: - no-cache content-length: - - '5887' + - '5885' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:17 GMT + - Mon, 02 Nov 2020 15:12:48 GMT expires: - '-1' pragma: @@ -979,7 +979,7 @@ interactions: - --resource-group -n User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -997,7 +997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:18 GMT + - Mon, 02 Nov 2020 15:12:49 GMT expires: - '-1' pragma: @@ -1030,14 +1030,14 @@ interactions: - --resource-group -n User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/deployments/mock-deployment/operations?api-version=2020-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003/operations/82A72D942355BF27","operationId":"82A72D942355BF27","properties":{"provisioningOperation":"Create","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:51.6150098Z","duration":"PT5.5708068S","trackingId":"6a5a2de2-2c16-4c3d-b2ae-aca15c6310f2","serviceRequestId":"40bf482f-4f8b-4865-b5d1-f6e7f6e7b09d","statusCode":"OK","targetResource":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"azure-cli-deploy-test-nsg1"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003/operations/08585990928220227028","operationId":"08585990928220227028","properties":{"provisioningOperation":"EvaluateDeploymentOutput","provisioningState":"Succeeded","timestamp":"2020-10-12T14:47:51.7474496Z","duration":"PT5.7032466S","trackingId":"0db65b0c-8eb4-4ca3-ad86-d0119e50aed0","statusCode":"OK"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003/operations/ABE9A66F7305182A","operationId":"ABE9A66F7305182A","properties":{"provisioningOperation":"Create","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:17.9050395Z","duration":"PT2.3417224S","trackingId":"1a9f6d29-1ff6-4eb9-80fc-0472a3e30254","serviceRequestId":"477799fe-ca47-4be7-972d-0eb94ca860bf","statusCode":"OK","targetResource":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"azure-cli-deploy-test-nsg1"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000003/operations/08585972769512810988","operationId":"08585972769512810988","properties":{"provisioningOperation":"EvaluateDeploymentOutput","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:17.9927294Z","duration":"PT2.4294123S","trackingId":"f02653b2-5c52-4777-875b-af2750d95142","statusCode":"OK"}}]}' headers: cache-control: - no-cache @@ -1046,7 +1046,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:18 GMT + - Mon, 02 Nov 2020 15:12:50 GMT expires: - '-1' pragma: @@ -1075,7 +1075,7 @@ interactions: - --resource-group -n --template-spec --parameters --no-wait User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1102,43 +1102,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:19 GMT + - Mon, 02 Nov 2020 15:12:51 GMT expires: - '-1' pragma: @@ -1167,7 +1167,7 @@ interactions: - --resource-group -n --template-spec --parameters --no-wait User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1176,8 +1176,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:47:37.5027929Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:47:37.5027929Z\"\r\n + \"2020-11-02T15:12:08.2958905Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:12:08.2958905Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -1204,7 +1204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:19 GMT + - Mon, 02 Nov 2020 15:12:51 GMT expires: - '-1' pragma: @@ -1243,23 +1243,23 @@ interactions: - --resource-group -n --template-spec --parameters --no-wait User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004","name":"azure-cli-resource-group-deployment000004","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:48:21.4860963Z","duration":"PT0S","correlationId":"d6faaabb-7b40-4a04-9362-7143356c0f50","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004","name":"azure-cli-resource-group-deployment000004","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:12:53.127181Z","duration":"PT0S","correlationId":"f0aee665-dfc7-410d-83b6-ad49afc34de0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}' headers: cache-control: - no-cache content-length: - - '1421' + - '1420' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:21 GMT + - Mon, 02 Nov 2020 15:12:53 GMT expires: - '-1' pragma: @@ -1298,25 +1298,25 @@ interactions: - --resource-group -n --template-spec --parameters --no-wait User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004","name":"azure-cli-resource-group-deployment000004","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-12T14:48:22.9556896Z","duration":"PT0.7671653S","correlationId":"1054af60-91f9-416d-9374-1ad1cc0d6be0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004","name":"azure-cli-resource-group-deployment000004","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-11-02T15:12:54.4320959Z","duration":"PT0.750573S","correlationId":"d115c662-9149-44ce-8f35-8e9a6d4d1f11","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004/operationStatuses/08585990927832890867?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004/operationStatuses/08585972769117960883?api-version=2020-06-01 cache-control: - no-cache content-length: - - '1176' + - '1175' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:22 GMT + - Mon, 02 Nov 2020 15:12:54 GMT expires: - '-1' pragma: @@ -1347,7 +1347,7 @@ interactions: - -n -g User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -1359,7 +1359,7 @@ interactions: cache-control: - no-cache date: - - Mon, 12 Oct 2020 14:48:24 GMT + - Mon, 02 Nov 2020 15:12:56 GMT expires: - '-1' pragma: @@ -1388,14 +1388,14 @@ interactions: - -n -g User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004","name":"azure-cli-resource-group-deployment000004","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Canceled","timestamp":"2020-10-12T14:48:24.1676398Z","duration":"PT1.9791155S","correlationId":"1054af60-91f9-416d-9374-1ad1cc0d6be0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-resource-group-deployment000004","name":"azure-cli-resource-group-deployment000004","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs_resource_group_deployment000001/providers/Microsoft.Resources/templateSpecs/cli-test-resource-group-ts-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"6836373655278635521","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Canceled","timestamp":"2020-11-02T15:12:55.8644285Z","duration":"PT2.1829056S","correlationId":"d115c662-9149-44ce-8f35-8e9a6d4d1f11","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}' headers: cache-control: - no-cache @@ -1404,7 +1404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:48:24 GMT + - Mon, 02 Nov 2020 15:12:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_level_what_if_ts.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_level_what_if_ts.yaml index 12eef1f011a..c851fcf236a 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_level_what_if_ts.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group_level_what_if_ts.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:00 GMT + - Mon, 02 Nov 2020 15:10:37 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:00 GMT + - Mon, 02 Nov 2020 15:10:38 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:49:02.7874235Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:49:02.7874235Z\"\r\n + \"2020-11-02T15:10:40.2403027Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:40.2403027Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-deploy-what-if-rg-deploy000002\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:02 GMT + - Mon, 02 Nov 2020 15:10:39 GMT expires: - '-1' pragma: @@ -179,7 +179,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -188,8 +188,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:49:04.167566Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:49:04.167566Z\"\r\n + \"2020-11-02T15:10:41.5354026Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:41.5354026Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountType\": @@ -217,11 +217,11 @@ interactions: cache-control: - no-cache content-length: - - '2214' + - '2216' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:03 GMT + - Mon, 02 Nov 2020 15:10:40 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: - --resource-group --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -279,43 +279,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:04 GMT + - Mon, 02 Nov 2020 15:10:42 GMT expires: - '-1' pragma: @@ -344,7 +344,7 @@ interactions: - --resource-group --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -353,8 +353,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:49:04.167566Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:49:04.167566Z\"\r\n + \"2020-11-02T15:10:41.5354026Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:41.5354026Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountType\": @@ -382,11 +382,11 @@ interactions: cache-control: - no-cache content-length: - - '2214' + - '2216' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:04 GMT + - Mon, 02 Nov 2020 15:10:43 GMT expires: - '-1' pragma: @@ -424,14 +424,14 @@ interactions: - --resource-group --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"17777275051920256744","parameters":{"storageAccountType":{"type":"String","value":"Standard_LRS"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:49:06.7046329Z","duration":"PT0S","correlationId":"bcfc9d5c-ffa7-4098-b598-41f73053e5f7","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storectp2ab46qsbq2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"17777275051920256744","parameters":{"storageAccountType":{"type":"String","value":"Standard_LRS"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:10:44.3575109Z","duration":"PT0S","correlationId":"9c2cfe41-9503-425a-9afa-6e9c781042ca","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storetiyl3qoxjuwny"}]}}' headers: cache-control: - no-cache @@ -440,7 +440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:06 GMT + - Mon, 02 Nov 2020 15:10:44 GMT expires: - '-1' pragma: @@ -478,17 +478,17 @@ interactions: - --resource-group --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"17777275051920256744","parameters":{"storageAccountType":{"type":"String","value":"Standard_LRS"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-12T14:49:08.3647704Z","duration":"PT0.7903404S","correlationId":"144ed61d-dc44-4756-a0f9-cee55ef09734","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"17777275051920256744","parameters":{"storageAccountType":{"type":"String","value":"Standard_LRS"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-11-02T15:10:45.8642889Z","duration":"PT0.7964451S","correlationId":"6c56a7dc-4360-4b4a-9663-a45c4448319d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1/operationStatuses/08585990927379031838?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1/operationStatuses/08585972770404097698?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -496,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:08 GMT + - Mon, 02 Nov 2020 15:10:45 GMT expires: - '-1' pragma: @@ -525,9 +525,9 @@ interactions: - --resource-group --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585990927379031838?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585972770404097698?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -539,7 +539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:39 GMT + - Mon, 02 Nov 2020 15:11:16 GMT expires: - '-1' pragma: @@ -568,12 +568,12 @@ interactions: - --resource-group --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"17777275051920256744","parameters":{"storageAccountType":{"type":"String","value":"Standard_LRS"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:49:30.8988912Z","duration":"PT23.3244612S","correlationId":"144ed61d-dc44-4756-a0f9-cee55ef09734","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[],"outputs":{"storageAccountId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storectp2ab46qsbq2"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storectp2ab46qsbq2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"17777275051920256744","parameters":{"storageAccountType":{"type":"String","value":"Standard_LRS"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:11:08.5412634Z","duration":"PT23.4734196S","correlationId":"6c56a7dc-4360-4b4a-9663-a45c4448319d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]}],"dependencies":[],"outputs":{"storageAccountId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storetiyl3qoxjuwny"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storetiyl3qoxjuwny"}]}}' headers: cache-control: - no-cache @@ -582,7 +582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:39 GMT + - Mon, 02 Nov 2020 15:11:17 GMT expires: - '-1' pragma: @@ -611,7 +611,7 @@ interactions: - --resource-group --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -638,43 +638,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:40 GMT + - Mon, 02 Nov 2020 15:11:17 GMT expires: - '-1' pragma: @@ -703,7 +703,7 @@ interactions: - --resource-group --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -712,8 +712,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:49:04.167566Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:49:04.167566Z\"\r\n + \"2020-11-02T15:10:41.5354026Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:41.5354026Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountType\": @@ -741,11 +741,11 @@ interactions: cache-control: - no-cache content-length: - - '2214' + - '2216' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:40 GMT + - Mon, 02 Nov 2020 15:11:18 GMT expires: - '-1' pragma: @@ -784,7 +784,7 @@ interactions: - --resource-group --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -798,11 +798,11 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 14:49:42 GMT + - Mon, 02 Nov 2020 15:11:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZXSEFUOjVGSUY6NUZURU1QTEFURTp8NDkwNjY0Mjc4MUQ0ODQ3Ny0xLUQwRTgxNkFBOjJEMTNDRjoyRDQ0QTM6MkQ4RTBCOjJEQTAzNUNCRDNEODBGIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZXSEFUOjVGSUY6NUZURU1QTEFURTp8OUNCNkRDNTgwNDBBMTQzRi0xLThGRTFGMTIxOjJERTc5RDoyRDQyQjk6MkRCRUU3OjJEQ0FEMkM2MzE0MzU5Iiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01 pragma: - no-cache strict-transport-security: @@ -829,12 +829,12 @@ interactions: - --resource-group --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZXSEFUOjVGSUY6NUZURU1QTEFURTp8NDkwNjY0Mjc4MUQ0ODQ3Ny0xLUQwRTgxNkFBOjJEMTNDRjoyRDQ0QTM6MkQ4RTBCOjJEQTAzNUNCRDNEODBGIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItQ0xJOjVGVEVTVDo1RkRFUExPWU1FTlQ6NUZXSEFUOjVGSUY6NUZURU1QTEFURTp8OUNCNkRDNTgwNDBBMTQzRi0xLThGRTFGMTIxOjJERTc5RDoyRDQyQjk6MkRCRUU3OjJEQ0FEMkM2MzE0MzU5Iiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01 response: body: - string: '{"status":"Succeeded","properties":{"correlationId":"d0e816aa-13cf-44a3-8e0b-a035cbd3d80f","changes":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002","changeType":"Ignore","before":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002","type":"Microsoft.Resources/templateSpecs"},"after":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002","type":"Microsoft.Resources/templateSpecs"}},{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","changeType":"Ignore","before":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002/1.0","type":"Microsoft.Resources/templateSpecs/versions"},"after":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002/1.0","type":"Microsoft.Resources/templateSpecs/versions"}},{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storectp2ab46qsbq2","changeType":"Modify","before":{"apiVersion":"2019-04-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storectp2ab46qsbq2","kind":"StorageV2","location":"westus","name":"storectp2ab46qsbq2","properties":{"accessTier":"Hot","encryption":{"keySource":"Microsoft.Storage"},"networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2019-04-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storectp2ab46qsbq2","kind":"StorageV2","location":"westus","name":"storectp2ab46qsbq2","properties":{"accessTier":"Hot","encryption":{"keySource":"Microsoft.Storage"},"networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_GRS"},"type":"Microsoft.Storage/storageAccounts"},"delta":[{"path":"sku.name","propertyChangeType":"Modify","before":"Standard_LRS","after":"Standard_GRS"}]}]}}' + string: '{"status":"Succeeded","properties":{"correlationId":"8fe1f121-e79d-42b9-bee7-cad2c6314359","changes":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002","changeType":"Ignore","before":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002","type":"Microsoft.Resources/templateSpecs"},"after":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002","type":"Microsoft.Resources/templateSpecs"}},{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","changeType":"Ignore","before":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002/1.0","type":"Microsoft.Resources/templateSpecs/versions"},"after":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-rg-deploy000002/versions/1.0","location":"westus","name":"cli-test-deploy-what-if-rg-deploy000002/1.0","type":"Microsoft.Resources/templateSpecs/versions"}},{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storetiyl3qoxjuwny","changeType":"Modify","before":{"apiVersion":"2019-04-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storetiyl3qoxjuwny","kind":"StorageV2","location":"westus","name":"storetiyl3qoxjuwny","properties":{"accessTier":"Hot","encryption":{"keySource":"Microsoft.Storage"},"networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2019-04-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Storage/storageAccounts/storetiyl3qoxjuwny","kind":"StorageV2","location":"westus","name":"storetiyl3qoxjuwny","properties":{"accessTier":"Hot","encryption":{"keySource":"Microsoft.Storage"},"networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_GRS"},"type":"Microsoft.Storage/storageAccounts"},"delta":[{"path":"sku.name","propertyChangeType":"Modify","before":"Standard_LRS","after":"Standard_GRS"}]}]}}' headers: cache-control: - no-cache @@ -843,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:49:58 GMT + - Mon, 02 Nov 2020 15:11:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_template_spec.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_template_spec.yaml index 1eb2b734bd7..caa2c57ded2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_template_spec.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_show_template_spec.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:36 GMT + - Mon, 02 Nov 2020 15:09:11 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:36 GMT + - Mon, 02 Nov 2020 15:09:11 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:39.0172583Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:39.0172583Z\"\r\n + \"2020-11-02T15:09:13.8819067Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:13.8819067Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-get-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-get-template-spec000002\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:38 GMT + - Mon, 02 Nov 2020 15:09:13 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -186,8 +186,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:40.2322611Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:40.2322611Z\"\r\n + \"2020-11-02T15:09:15.2969144Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.2969144Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -214,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:39 GMT + - Mon, 02 Nov 2020 15:09:14 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: - -g --name User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -254,8 +254,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:39.0172583Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:40.2322611Z\"\r\n + \"2020-11-02T15:09:13.8819067Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.2969144Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-get-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-get-template-spec000002\"\r\n}" headers: @@ -266,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:40 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -299,7 +299,7 @@ interactions: - --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -308,8 +308,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:43:39.0172583Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:43:40.2322611Z\"\r\n + \"2020-11-02T15:09:13.8819067Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:15.2969144Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-get-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-get-template-spec000002\"\r\n}" headers: @@ -320,7 +320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:43:41 GMT + - Mon, 02 Nov 2020 15:09:15 GMT expires: - '-1' pragma: @@ -355,7 +355,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -369,7 +369,7 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 03:43:44 GMT + - Mon, 02 Nov 2020 15:09:18 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_subscription_level_what_if_ts.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_subscription_level_what_if_ts.yaml index aa9b97d77f8..6ddfe4378a8 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_subscription_level_what_if_ts.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_subscription_level_what_if_ts.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:34 GMT + - Mon, 02 Nov 2020 15:10:38 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:34 GMT + - Mon, 02 Nov 2020 15:10:38 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:50:36.8054952Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:50:36.8054952Z\"\r\n + \"2020-11-02T15:10:40.4478314Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:40.4478314Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-deploy-what-if-sub-deploy000002\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:36 GMT + - Mon, 02 Nov 2020 15:10:40 GMT expires: - '-1' pragma: @@ -176,7 +176,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -185,8 +185,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:50:37.8921207Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:50:37.8921207Z\"\r\n + \"2020-11-02T15:10:42.0078473Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:42.0078473Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"denyLocation\": @@ -214,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:37 GMT + - Mon, 02 Nov 2020 15:10:42 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: - --location --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -272,43 +272,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:38 GMT + - Mon, 02 Nov 2020 15:10:42 GMT expires: - '-1' pragma: @@ -337,7 +337,7 @@ interactions: - --location --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -346,8 +346,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:50:37.8921207Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:50:37.8921207Z\"\r\n + \"2020-11-02T15:10:42.0078473Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:42.0078473Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"denyLocation\": @@ -375,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:39 GMT + - Mon, 02 Nov 2020 15:10:43 GMT expires: - '-1' pragma: @@ -413,14 +413,14 @@ interactions: - --location --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","location":"westus","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"1669246125929096641","parameters":{"denyLocation":{"type":"String","value":"northeurope"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:50:39.9642014Z","duration":"PT0S","correlationId":"7053e87c-924a-4520-93db-f488a255ef9d","providers":[{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"policyDefinitions","locations":[null]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","location":"westus","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"1669246125929096641","parameters":{"denyLocation":{"type":"String","value":"northeurope"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:10:44.4731002Z","duration":"PT0S","correlationId":"182a7eb8-65ed-4a31-b19f-16e79d5a9458","providers":[{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"policyDefinitions","locations":[null]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test"}]}}' headers: cache-control: - no-cache @@ -429,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:39 GMT + - Mon, 02 Nov 2020 15:10:43 GMT expires: - '-1' pragma: @@ -467,17 +467,17 @@ interactions: - --location --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","location":"westus","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"1669246125929096641","parameters":{"denyLocation":{"type":"String","value":"northeurope"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-12T14:50:42.0751557Z","duration":"PT1.7701273S","correlationId":"7ae348c7-34fc-46a5-8af3-72e4f7365f25","providers":[{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"policyDefinitions","locations":[null]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","location":"westus","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"1669246125929096641","parameters":{"denyLocation":{"type":"String","value":"northeurope"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-11-02T15:10:46.1039061Z","duration":"PT1.1655398S","correlationId":"3cf00387-594a-48df-9aaf-9740185bfa74","providers":[{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"policyDefinitions","locations":[null]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1/operationStatuses/08585990926451725815?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1/operationStatuses/08585972770405392435?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -485,20 +485,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:50:41 GMT + - Mon, 02 Nov 2020 15:10:45 GMT expires: - '-1' pragma: - no-cache 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: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -514,9 +518,9 @@ interactions: - --location --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585990926451725815?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585972770405392435?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -528,7 +532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:51:12 GMT + - Mon, 02 Nov 2020 15:11:16 GMT expires: - '-1' pragma: @@ -557,12 +561,12 @@ interactions: - --location --template-spec User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","location":"westus","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"1669246125929096641","parameters":{"denyLocation":{"type":"String","value":"northeurope"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-12T14:50:43.6541764Z","duration":"PT3.349148S","correlationId":"7ae348c7-34fc-46a5-8af3-72e4f7365f25","providers":[{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"policyDefinitions","locations":[null]}]}],"dependencies":[],"outputs":{"policyDefinitionId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/1","name":"1","type":"Microsoft.Resources/deployments","location":"westus","properties":{"templateLink":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment_what_if_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-deploy-what-if-sub-deploy000002/versions/1.0","contentVersion":"1.0.0.0"},"templateHash":"1669246125929096641","parameters":{"denyLocation":{"type":"String","value":"northeurope"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-02T15:10:49.6339973Z","duration":"PT4.695631S","correlationId":"3cf00387-594a-48df-9aaf-9740185bfa74","providers":[{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"policyDefinitions","locations":[null]}]}],"dependencies":[],"outputs":{"policyDefinitionId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test"}]}}' headers: cache-control: - no-cache @@ -571,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:51:12 GMT + - Mon, 02 Nov 2020 15:11:16 GMT expires: - '-1' pragma: @@ -600,7 +604,7 @@ interactions: - --location --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -627,43 +631,43 @@ interactions: US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"SupportsTags, + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"deploymentScripts/logs","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/deploymentScriptOperationResults","locations":["East Asia","Southeast Asia","Australia East","Brazil South","Canada Central","East US 2","East US","Central US","North Central US","UK South","Central India","South India","Japan East","Korea Central","North Europe","West Central US","West Europe","West US 2","West US","South Central US","Canada East","Central US - EUAP","East US 2 EUAP"],"apiVersions":["2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East + EUAP","East US 2 EUAP"],"apiVersions":["2020-10-01","2019-10-01-preview"],"capabilities":"None"},{"resourceType":"templateSpecs","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"templateSpecs/versions","locations":["East Asia","Southeast Asia","Australia East","Australia Central","Australia Central 2","Australia Southeast","Brazil South","Canada Central","Canada East","Switzerland - North","Central US EUAP","Germany West Central","East US 2","East US","Central - US","North Central US","East US 2 EUAP","France Central","UK South","UK West","Central - India","West India","South India","Japan East","Japan West","Korea Central","Korea - South","North Europe","Norway East","UAE North","West Central US","West Europe","West - US 2","West US","South Central US","South Africa North"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + North","Germany West Central","East US 2","East US","Central US","North Central + US","France Central","UK South","UK West","Central India","West India","South + India","Japan East","Japan West","Korea Central","Korea South","North Europe","Norway + East","UAE North","West Central US","West Europe","West US 2","West US","South + Central US","South Africa North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationFree"}' headers: cache-control: - no-cache content-length: - - '15916' + - '15955' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:51:13 GMT + - Mon, 02 Nov 2020 15:11:18 GMT expires: - '-1' pragma: @@ -692,7 +696,7 @@ interactions: - --location --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -701,8 +705,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T14:50:37.8921207Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T14:50:37.8921207Z\"\r\n + \"2020-11-02T15:10:42.0078473Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:10:42.0078473Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"denyLocation\": @@ -730,7 +734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:51:14 GMT + - Mon, 02 Nov 2020 15:11:19 GMT expires: - '-1' pragma: @@ -769,7 +773,7 @@ interactions: - --location --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -783,11 +787,11 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 14:51:15 GMT + - Mon, 02 Nov 2020 15:11:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLTEtRUYzMTNERTE6MkQyMTI0OjJENDk2MToyRDlENzg6MkQ5NDU2NDU5RTY4M0MiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLTEtQTA3RTcxOTc6MkQ5QzU1OjJENERBMzoyRDk4OTI6MkRFRDAxMTVDMzZFQzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01 pragma: - no-cache strict-transport-security: @@ -814,12 +818,12 @@ interactions: - --location --template-spec --parameters --no-pretty-print User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLTEtRUYzMTNERTE6MkQyMTI0OjJENDk2MToyRDlENzg6MkQ5NDU2NDU5RTY4M0MiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLTEtQTA3RTcxOTc6MkQ5QzU1OjJENERBMzoyRDk4OTI6MkRFRDAxMTVDMzZFQzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01 response: body: - string: '{"status":"Succeeded","properties":{"correlationId":"ef313de1-2124-4961-9d78-9456459e683c","changes":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test","changeType":"Modify","before":{"apiVersion":"2018-05-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test","name":"policy-for-what-if-test","properties":{"mode":"Indexed","policyRule":{"if":{"equals":"northeurope","field":"location"},"then":{"effect":"deny"}},"policyType":"Custom"},"type":"Microsoft.Authorization/policyDefinitions"},"after":{"apiVersion":"2018-05-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test","name":"policy-for-what-if-test","properties":{"mode":"Indexed","policyRule":{"if":{"equals":"westeurope","field":"location"},"then":{"effect":"deny"}},"policyType":"Custom"},"type":"Microsoft.Authorization/policyDefinitions"},"delta":[{"path":"properties.policyRule.if.equals","propertyChangeType":"Modify","before":"northeurope","after":"westeurope"}]}]}}' + string: '{"status":"Succeeded","properties":{"correlationId":"a07e7197-9c55-4da3-9892-ed0115c36ec2","changes":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test","changeType":"Modify","before":{"apiVersion":"2018-05-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test","name":"policy-for-what-if-test","properties":{"mode":"Indexed","policyRule":{"if":{"equals":"northeurope","field":"location"},"then":{"effect":"deny"}},"policyType":"Custom"},"type":"Microsoft.Authorization/policyDefinitions"},"after":{"apiVersion":"2018-05-01","id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy-for-what-if-test","name":"policy-for-what-if-test","properties":{"mode":"Indexed","policyRule":{"if":{"equals":"westeurope","field":"location"},"then":{"effect":"deny"}},"policyType":"Custom"},"type":"Microsoft.Authorization/policyDefinitions"},"delta":[{"path":"properties.policyRule.if.equals","propertyChangeType":"Modify","before":"northeurope","after":"westeurope"}]}]}}' headers: cache-control: - no-cache @@ -828,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 14:51:30 GMT + - Mon, 02 Nov 2020 15:11:35 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_update_template_specs.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_update_template_specs.yaml index a9e1c8b3c5c..750b7684ce3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_update_template_specs.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_update_template_specs.yaml @@ -14,7 +14,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:25 GMT + - Mon, 02 Nov 2020 15:09:21 GMT expires: - '-1' pragma: @@ -61,7 +61,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:25 GMT + - Mon, 02 Nov 2020 15:09:21 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -121,8 +121,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:26.8281828Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:26.8281828Z\"\r\n + \"2020-11-02T15:09:23.8988115Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:23.8988115Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-update-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-update-template-spec000002\"\r\n}" headers: @@ -133,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:27 GMT + - Mon, 02 Nov 2020 15:09:23 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: - -g -n -v -l -f User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -186,8 +186,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:27.9396785Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:27.9396785Z\"\r\n + \"2020-11-02T15:09:25.0388494Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:25.0388494Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -214,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:27 GMT + - Mon, 02 Nov 2020 15:09:24 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: - -s --display-name --description --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -254,8 +254,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:26.8281828Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:27.9396785Z\"\r\n + \"2020-11-02T15:09:23.8988115Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:25.0388494Z\"\r\n \ },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-update-template-spec000002\",\r\n \ \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"cli-test-update-template-spec000002\"\r\n}" headers: @@ -266,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:28 GMT + - Mon, 02 Nov 2020 15:09:25 GMT expires: - '-1' pragma: @@ -304,7 +304,7 @@ interactions: - -s --display-name --description --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -313,8 +313,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:26.8281828Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:29.233784Z\"\r\n + \"2020-11-02T15:09:23.8988115Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:26.0252265Z\"\r\n \ },\r\n \"properties\": {\r\n \"displayName\": \"create-spec000003\",\r\n \ \"description\": \"AzCLI test root template spec\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_template_specs000001/providers/Microsoft.Resources/templateSpecs/cli-test-update-template-spec000002\",\r\n @@ -323,11 +323,11 @@ interactions: cache-control: - no-cache content-length: - - '818' + - '819' content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:29 GMT + - Mon, 02 Nov 2020 15:09:25 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: - -s --version-description --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -367,8 +367,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:27.9396785Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:27.9396785Z\"\r\n + \"2020-11-02T15:09:25.0388494Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:25.0388494Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -395,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:29 GMT + - Mon, 02 Nov 2020 15:09:26 GMT expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: - -s --version-description --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -450,8 +450,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:27.9396785Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:30.2628736Z\"\r\n + \"2020-11-02T15:09:25.0388494Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:26.7716458Z\"\r\n \ },\r\n \"properties\": {\r\n \"description\": \"AzCLI test version of root template spec\",\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -478,7 +478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:29 GMT + - Mon, 02 Nov 2020 15:09:26 GMT expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: - -g -n -v -f --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -518,8 +518,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:27.9396785Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:30.2628736Z\"\r\n + \"2020-11-02T15:09:25.0388494Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:26.7716458Z\"\r\n \ },\r\n \"properties\": {\r\n \"description\": \"AzCLI test version of root template spec\",\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:31 GMT + - Mon, 02 Nov 2020 15:09:27 GMT expires: - '-1' pragma: @@ -636,7 +636,7 @@ interactions: - -g -n -v -f --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -645,8 +645,8 @@ interactions: body: string: "{\r\n \"location\": \"westus\",\r\n \"systemData\": {\r\n \"createdBy\": \"daetienn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2020-10-12T03:44:27.9396785Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-10-12T03:44:31.3972779Z\"\r\n + \"2020-11-02T15:09:25.0388494Z\",\r\n \"lastModifiedBy\": \"daetienn@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-11-02T15:09:27.6327738Z\"\r\n \ },\r\n \"properties\": {\r\n \"artifacts\": [\r\n {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\r\n \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n @@ -772,7 +772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 12 Oct 2020 03:44:31 GMT + - Mon, 02 Nov 2020 15:09:27 GMT expires: - '-1' pragma: @@ -805,7 +805,7 @@ interactions: - --template-spec --yes User-Agent: - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -819,7 +819,7 @@ interactions: content-length: - '0' date: - - Mon, 12 Oct 2020 03:44:33 GMT + - Mon, 02 Nov 2020 15:09:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/role/_params.py b/src/azure-cli/azure/cli/command_modules/role/_params.py index d870a7bbd2a..c57feefe1e8 100644 --- a/src/azure-cli/azure/cli/command_modules/role/_params.py +++ b/src/azure-cli/azure/cli/command_modules/role/_params.py @@ -192,9 +192,9 @@ def load_arguments(self, _): "use the object id and not the app id.") c.argument('ids', nargs='+', help='space-separated role assignment ids') c.argument('include_classic_administrators', arg_type=get_three_state_flag(), help='list default role assignments for subscription classic administrators, aka co-admins') - c.argument('description', min_api='2020-04-01-preview', help='Description of role assignment.') - c.argument('condition', min_api='2020-04-01-preview', help='Condition under which the user can be granted permission.') - c.argument('condition_version', min_api='2020-04-01-preview', help='Version of the condition syntax. If --condition is specified without --condition-version, default to 2.0.') + c.argument('description', is_preview=True, min_api='2020-04-01-preview', help='Description of role assignment.') + c.argument('condition', is_preview=True, min_api='2020-04-01-preview', help='Condition under which the user can be granted permission.') + c.argument('condition_version', is_preview=True, min_api='2020-04-01-preview', help='Version of the condition syntax. If --condition is specified without --condition-version, default to 2.0.') time_help = ('The {} of the query in the format of %Y-%m-%dT%H:%M:%SZ, e.g. 2000-12-31T12:59:59Z. Defaults to {}') with self.argument_context('role assignment list-changelogs') as c: diff --git a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_graph_group_scenario.yaml b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_graph_group_scenario.yaml index 71750f827c0..eadd87b889a 100644 --- a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_graph_group_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_graph_group_scenario.yaml @@ -1,8 +1,8 @@ interactions: - request: - body: '{"accountEnabled": true, "displayName": "deleteme1", "passwordProfile": + body: '{"accountEnabled": true, "displayName": "deleteme1000001", "passwordProfile": {"password": "Test1234!!", "forceChangePasswordNextLogin": false}, "userPrincipalName": - "deleteme1@example.com", "mailNickname": "deleteme1"}' + "deleteme1000001@example.com", "mailNickname": "deleteme1000001"}' headers: Accept: - application/json @@ -13,48 +13,48 @@ interactions: Connection: - keep-alive Content-Length: - - '230' + - '248' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --display-name --password --user-principal-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"cc380d58-0746-40fd-b4ff-e32a73ff0b34","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-08-21T06:26:19Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme1","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-08-21T06:26:18.9277731Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/cc380d58-0746-40fd-b4ff-e32a73ff0b34/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"5e6ead1a-543c-47e1-824f-a5ef419d9d46","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-10-30T02:52:23Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1000001","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme1000001","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-10-30T02:52:23.0068899Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/5e6ead1a-543c-47e1-824f-a5ef419d9d46/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1000001@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1563' + - '1581' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:18 GMT + - Fri, 30 Oct 2020 02:52:22 GMT duration: - - '6078056' + - '5405818' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/cc380d58-0746-40fd-b4ff-e32a73ff0b34/Microsoft.DirectoryServices.User + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/5e6ead1a-543c-47e1-824f-a5ef419d9d46/Microsoft.DirectoryServices.User ocp-aad-diagnostics-server-name: - - PRGXX9jjf9bQz2WUo+1Gib56c0IpEiXlqye6PC24stc= + - l6+seqgeiDph5xOWsviqRFo+MYCGYj3S4Et4RKsy3A4= ocp-aad-session-key: - - XdV5Qpis1I_DiIsxS6SwCdD-cYrdVFuBlnth1rvqtj9NORHiGV-dV-34V5vCK8r6u8JP6M_0Wa5pf127EBT7U0Yg7WeJRWMmW9x_eBRWR9cs0U2rvupwor_cs0KfQzLHNG97fCeLtlefbzKfF5vLAIk1CiCgDUp38Fy-Qw7zJhs.dH8jilH7pBBfMWENGCBhiYlaxRqB07EXZ5hG1OZqwF4 + - 2cLpKG3L7ujQr5Nd9rieeI0ks1NgXjvXpAGTV2_QCRldceS-uZ2UHWtDaRDE5elyDmVk8DrDmrhwZpXw7EmOSqOenNS-bAKVAUgN0bydQ_IIJZNw2iiZann1QY3iwVWLsZf3hWTdKoi1QysQib_AA4UK6MsmP34OgtCAY6bG2Rg.W6C8Fm8rDWSHxbvW6XfxsN-aSsIUX5RmbDBOu2BN9Cs pragma: - no-cache request-id: - - d5af9789-ac56-4229-aa67-1c85e62403ba + - fba3ba35-3053-4232-9f60-c9829997df3b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -69,7 +69,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": false, "displayName": "deleteme1_new", "mailNickname": + body: '{"accountEnabled": false, "displayName": "deleteme1000001_new", "mailNickname": "deleteme11"}' headers: Accept: @@ -81,18 +81,18 @@ interactions: Connection: - keep-alive Content-Length: - - '87' + - '93' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --display-name --account-enabled --id --mail-nickname User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1%40example.com?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1000001%40example.com?api-version=1.6 response: body: string: '' @@ -102,19 +102,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:19 GMT + - Fri, 30 Oct 2020 02:52:24 GMT duration: - - '5308127' + - '4435028' expires: - '-1' ocp-aad-diagnostics-server-name: - - 89ehBeiIi5vsLXIGQFsOdP5/iXWeBJ+QgcZg2nJAI+A= + - c0oIeGJh7S6GD841mysRw+FhOz+qp0eRP87hgN2tEAo= ocp-aad-session-key: - - HSg08FtEesaad7-FdGIDQYkpnPU3FBYfUa51n98j8kCZubRwpx64cu-RfR06aT2rWbIMzEK3_h_6_CRXDI4TFOD2bXFI0RJLzfB9KW4PYuEV2suX_I4a4MIISN0EtvoOAHnZ6pIhl6EAfbizx890ZuUzFRf3q7Dxgm3QTtOgrfY.nBLLWmbS7N-HwVwMtwQuG4nSch-VLuqQcyNRaZU3IkQ + - lygqGmW0bYifojVApRIZr4YINBWUGKzotQ-9eCRpuug1pg9IcSqr5VJ6yayoGeVHnSgEhjn_i9F076Pn7xnde_kNpD8TPhUhUaz1BzlIqzK3oeQeEpapGfbqbebAW8sST1NkfI7OAqswW25SooHKDbXRDjR9OS1o2AEoISxQ-h8.-pE75AXAD4pYUIcXukdGp7RVY3uVbK6Dc5qqTQ8V-EE pragma: - no-cache request-id: - - 255bfed1-71fe-45dc-abb7-87f02ae1f10c + - 230c9cb9-dd66-4c8e-91ea-40e247f63ac4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -142,40 +142,40 @@ interactions: ParameterSetName: - --upn-or-object-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1%40example.com?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1000001%40example.com?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"cc380d58-0746-40fd-b4ff-e32a73ff0b34","deletionTimestamp":null,"accountEnabled":false,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-08-21T06:26:19Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1_new","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme11","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-08-21T06:26:18Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/cc380d58-0746-40fd-b4ff-e32a73ff0b34/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"5e6ead1a-543c-47e1-824f-a5ef419d9d46","deletionTimestamp":null,"accountEnabled":false,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-10-30T02:52:23Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1000001_new","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme11","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-10-30T02:52:23Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/5e6ead1a-543c-47e1-824f-a5ef419d9d46/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1000001@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1561' + - '1573' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:19 GMT + - Fri, 30 Oct 2020 02:52:24 GMT duration: - - '2393534' + - '2335485' expires: - '-1' ocp-aad-diagnostics-server-name: - - mkmGIZ2j5Ca42Qa49ycJm+noc56ZbQai9OBtxAgVnJk= + - aP7R6MA20cup8msdSP2y3ghSXzLVVH210DgvMbRfVHU= ocp-aad-session-key: - - a_Vi1lNQiUXPvY0pGRaeyfjow3VjcGMZ0aTDLJrQ_3t1kbVXrKGGwa4Lmdu7AwGA57nukraKbMwzpo0JT0_1A7PT8aIIyI2HZMy4c-JDgacGEBbBXR82MoMzFSUWDUoP9gMeciE45bLvUKykZxUpAzZDl98RRjR2AP7trJArOZA.ZoczxhD4FJUnY9mICikuclJyvKVCSO6GUB8aLOUTVLA + - rHomasbOHqyC3DD7zdCSFXMXJi24qSry1FJXFP1IyGVTxLAkzrvgsFYhN-BeJMhdIxZQP5n6hmN8PnrvKg7-MO1-vCJF6TOUQAJ4FLzI6Nj-6XnM6Ikk9PIXPOzUAvcDo44wnXWG8u0TYMGb7VmNxTBbLDqmWOQtW7e2u4eePRg.X2K9G7i5D872EeUv7rslRIakNHy_Z9-soVw0LYOs4ik pragma: - no-cache request-id: - - bcdc1c58-7052-4971-b295-58f9dd7573d2 + - b7d95b71-0698-4c94-a254-e20cea0cb199 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -207,12 +207,12 @@ interactions: ParameterSetName: - --id --password User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1%40example.com?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1000001%40example.com?api-version=1.6 response: body: string: '' @@ -222,19 +222,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:20 GMT + - Fri, 30 Oct 2020 02:52:24 GMT duration: - - '6030642' + - '4647315' expires: - '-1' ocp-aad-diagnostics-server-name: - - psE1e0eMCRsW8VuLfPbL8q2rg/AoaKNYa0VRdRKfMjg= + - qftXp5zc6ydbQAq8Ev582RPlrRAnvm1DC9BwcgegNJ8= ocp-aad-session-key: - - DWEtQwwkxXmaP8vJNDbjRpK0zufAA6GYLAdTxyiQ2vXupSZMS516SZpvjbdYPsUvll_UuFSntEDVR2EftO_Ao-SHq-cD3Sk3wOIfUoM5lnJusIUuIR6ayAQJ7miDRXj_K2cwETbFIM1y1Qt85CtsUinOhcMvC5NOJdGmiugKwYQ.GLIJH-br8J3bISp3MjmBLqvJuz55NxHG0HVhkNeuxqs + - kv-6XCYasjf5mgBNv7w3hGAinxpR4_XjxfkYTCF6H4IUMORwvJNH_XEAh1bmCO289cPKC3zhvxWCmZkjOU98eb6gbb2gcWiXT0JYUD9k6PVHRoQSsL3t2HTN87JD_PcnWMLqK84YrGpH5f5lXOacn7yIfekayLkXj8xWejnKoHA.L8Nec3ZQRbn8k5x-Il_6YrA0TEMEJvnK0pLX3JHT0lk pragma: - no-cache request-id: - - deb203fb-f679-416c-b9e5-f24407ff4f99 + - ced75eed-751b-4de1-88b8-323d09ce2750 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -267,12 +267,12 @@ interactions: ParameterSetName: - --id --password --force-change-password-next-login User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1%40example.com?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/deleteme1000001%40example.com?api-version=1.6 response: body: string: '' @@ -282,19 +282,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:21 GMT + - Fri, 30 Oct 2020 02:52:25 GMT duration: - - '5466504' + - '4595097' expires: - '-1' ocp-aad-diagnostics-server-name: - - BRXu3ElgUnY89ucLsTTluLNdygppco2UVlxAWeS6xlg= + - ZJbEZ/Ti59JY0vuH6M20mpc1PQ3KfvEKrBnzPZCOElk= ocp-aad-session-key: - - PFV_E5kuX7JdG1zgYSFkxNboQB942S5udaycX0tzPIwYES7Mrh3zD6zMgYl2lpjgiGb1tXLjJjpWyMSSlP7Qiq_SbeX9wWOh9ApdtHZ9n74GUv1tv-eMC04dRB882umKIEo9_0YBErrdBDP23nCY780BuY1CrKYZeNYH2G-yiMU.zqIUxFM7sFR12ag_Bgr6ucUz-c5-SoVMHNlTPikdHOw + - o7jD5PfblQc2TiG4fuDKmf3H8jJSeZ5WLH26Ic9dy6JQl5X4N7rR6vcsFOiSNlcTit8vM-RJQYgwA2G1tyCSgd-tHBxS2zH6DKLK1IVquNXNrmfoGmZReyblgJ5_c0xU8DEfs5SZDIFR8OZkgTcFmJ8HtVIP3imaomYWqFkhYRE.Y2Uf8HjGhijM2A4e4LzG2f0BcgE---_81PFQDu15lyg pragma: - no-cache request-id: - - abe979ff-f2b4-4224-a097-7486a0ead71b + - ec7e9554-2e85-48cd-bacd-3e5d7808a4bb strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -309,9 +309,9 @@ interactions: code: 204 message: No Content - request: - body: '{"accountEnabled": true, "displayName": "deleteme2", "passwordProfile": + body: '{"accountEnabled": true, "displayName": "deleteme2000002", "passwordProfile": {"password": "Test1234!!", "forceChangePasswordNextLogin": false}, "userPrincipalName": - "deleteme2@example.com", "mailNickname": "deleteme2"}' + "deleteme2000002@example.com", "mailNickname": "deleteme2000002"}' headers: Accept: - application/json @@ -322,48 +322,48 @@ interactions: Connection: - keep-alive Content-Length: - - '230' + - '248' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --display-name --password --user-principal-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"ce8da55c-fef6-4527-b815-847aff78e387","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-08-21T06:26:23Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme2","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-08-21T06:26:22.9568165Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/ce8da55c-fef6-4527-b815-847aff78e387/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme2@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"d1730585-48e1-40a5-b9a3-109a7e390e3f","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-10-30T02:52:27Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2000002","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme2000002","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-10-30T02:52:27.1055628Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/d1730585-48e1-40a5-b9a3-109a7e390e3f/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme2000002@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1563' + - '1581' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:22 GMT + - Fri, 30 Oct 2020 02:52:26 GMT duration: - - '5317396' + - '3748764' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/ce8da55c-fef6-4527-b815-847aff78e387/Microsoft.DirectoryServices.User + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d1730585-48e1-40a5-b9a3-109a7e390e3f/Microsoft.DirectoryServices.User ocp-aad-diagnostics-server-name: - - 6sefrbwjEnLiuPVqSE8CNdgE3jZeyuKw+YvzR5MjvEY= + - ZJbEZ/Ti59JY0vuH6M20mpc1PQ3KfvEKrBnzPZCOElk= ocp-aad-session-key: - - fSBBX0VMkAvR567pDA1DLEzdWs_2DkdcqGF1VFxrVDX-Cd0EjXR0oFedDqnASfU0hcxexAMT7qUBf74PcVoUz2UR5CyEeXToZnVBhTVqLzQdQhqlzu96sS8fsNzxs-Psi0nhec4Vy4uF3cJ881ebhJvVt51ad926ZoVhe4GALzY._k9jafPndntfx478alhi4BXOjICMZ3T-yOkle7SA5oQ + - Y2_alkxN5eubqWHyTDDhfs3UdAu9i-YCBafbH_zPWOUZNBHpujeOm2UKDaS5F87QjB-yufTatX10d-mpRu9ZZOYbF1mVOg3HjxIgJbvPaG-GGZSuqqKVi87VW_78Z2k7i34Zg9CCZqUWzQfyMbHfL_7SlrAtSngJHDOKXY85mds.TOCzUq2BKMugQWzbhy7Wfc5RQlXHY-xfUk7sMb-DP54 pragma: - no-cache request-id: - - 2c08b73d-074e-4b40-a5dd-edd071979268 + - e681c868-08fe-4e85-b984-dd409ac2551f strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -391,8 +391,8 @@ interactions: ParameterSetName: - --display-name --mail-nickname --description User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -412,19 +412,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:23 GMT + - Fri, 30 Oct 2020 02:52:27 GMT duration: - - '2317304' + - '2238486' expires: - '-1' ocp-aad-diagnostics-server-name: - - J5W1aFTGa+9Ktpwq7jejrBeOZZl7Fm7rhKv1KngFtPE= + - rrWYoO1jizuGLyJfQT7ns+cnQ7AfNWqBaVe8AnHF6v0= ocp-aad-session-key: - - ElIVfXKcF8Qcq0RgJS86lDABdsNo_nPaxBVmWaOBzW5ypptOaD5BsI5TeRnuXhc33PMvEuJzHJpm16dWsjgcdxpfPcmtfvIdocQsgyspkg0CAtXVVUVHPyClI_mIxoeCVAml-IQYEtXRG0yZxIrB1J1vvB4CsGm8N-yhLh4_r_8.dhLoOceGEdNGI2VPQFLg6XwcDliLpNFnXxehqh_B9ZU + - wIJF9kYB7S475HcljsTZ4IUqW8EBxJ6cNBuZ2yEMAZ7gNx8vs9YWendl9I_-EQ34emI05ujUuKbVBB5-8sqxNqL8O9n4Nh583GZ-ZevOpy5hfsAkMkTYi_nkuqWR_rzK3rmyD9dTJPyCMcw8KS50yD6TFHldl-M-O9kFgEmyaas.B3w9swT-mkGuwm9YEZesfFwxn9Iz5GdHEl_jDhHFxJw pragma: - no-cache request-id: - - e1e60944-daf7-4a3f-b0e7-866eac736d26 + - 7713d028-be49-4963-986c-7844792ef723 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -457,15 +457,15 @@ interactions: ParameterSetName: - --display-name --mail-nickname --description User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}' headers: access-control-allow-origin: - '*' @@ -478,21 +478,21 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:24 GMT + - Fri, 30 Oct 2020 02:52:28 GMT duration: - - '5221561' + - '3255784' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/acd05d7f-ab36-4c2a-8b71-ce973e36ccba/Microsoft.DirectoryServices.Group + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe/Microsoft.DirectoryServices.Group ocp-aad-diagnostics-server-name: - - uVbQ6xgs/RlO9xH5o52ndOI15G/uG647muL/LJD5RjY= + - AO8aByeydM5hr4Nt08rI3IeFDTLsTL/1ZH6EpPaHXyU= ocp-aad-session-key: - - H_JbLVeadAVCbR07sJPZ3b7kJAC5Jq9bkL28-13OlUpzNg5IvnQ2lMJ9Gs_s4Nho-2p5jfwga_-zGsdC9_bx9vemvDXoNE1NcTVfBoSMhIEQbOiRtzkXQ61Obd7H_t9kzLEDncwRJSPOgwrO9ewEcyFoRsOm2rIGI4lv0Uch5eI.0hVxT1ZXMgB4dlOj9ZNKIPK5mSndKGFEpUZ8bnipVFY + - qPJiVrEEbt0bZSulpx4VTpIhy2Qzmf26sOYdUs3hgPsnjeokX5HB61B1otfW4_QxrJFObKdogTu1IcbE7z9PYSclqeAhGPQEyFSQjV8OLyCn2O1RdCdRAxiGoFpVzcLZ60zaieNDbHD-ZWg-GPRgHiTrp1I5CqHBs7hVYnJZvng.LMn1K7epEOamEbo4Pzias-thhKBIw28iMVI7vqf-HAs pragma: - no-cache request-id: - - c446b746-ade9-42c9-b11c-3536f9e49772 + - 8a9d8206-ffd5-483f-bc82-e733424549f0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -520,15 +520,15 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -541,19 +541,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:24 GMT + - Fri, 30 Oct 2020 02:52:28 GMT duration: - - '2195672' + - '2397561' expires: - '-1' ocp-aad-diagnostics-server-name: - - QE46OP7QH9b9YEig+PQuzvbDRWQ4hRBhkwALGVrMwDo= + - uEj+wlcZ615wU2IQ1HKmSoQK2kWhKsYRKEBSkpakN90= ocp-aad-session-key: - - -5aLZjOyhPzPRZlYKn6-pxZQA7U0eTZScKSu9_72ZwZMA28i5Ao7g73mfFpI5IZIulDhPL5bXHoC6xiHgR57Lw93FHxXosEwKf45sQUengPIgj0eeltO2C9uKLJqBmWEPazFa9KIGkru3mAYw5VB4rYdR42uxX4XBRqniSE34Xs.i5OhmziEn9UYcjmV7C-FyOv2dCY7J-TV-0Ca94GEqDE + - V-08-uS6kJ0B5ouhYiGT6YMisxkAir9wg5mc5N1AzxDqQ9nUdrM5SCkCnmwf2zjCOx2wUxpXioTo8iU1KWR_EU7WAv8B9lIZWOf0m8u0p9wa9NJ7BWvCxWGwuaLJY3nvYBZHARhToVrzfg8qJoq6mbWAds91Bnq9UvK0Rzt7Dwk.T0BniBA1Zu-MA8askIDqA9Yc67fMi5u4wr4XK-Z4PVA pragma: - no-cache request-id: - - e72fdff3-b847-4df0-92c8-400d0591124a + - da531b66-a31d-4e32-9d4c-54812ddd9b18 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -568,7 +568,7 @@ interactions: code: 200 message: OK - request: - body: '{"url": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/cc380d58-0746-40fd-b4ff-e32a73ff0b34"}' + body: '{"url": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/5e6ead1a-543c-47e1-824f-a5ef419d9d46"}' headers: Accept: - application/json @@ -585,12 +585,12 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba/$links/members?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe/$links/members?api-version=1.6 response: body: string: '' @@ -600,19 +600,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:25 GMT + - Fri, 30 Oct 2020 02:52:29 GMT duration: - - '5315310' + - '3527277' expires: - '-1' ocp-aad-diagnostics-server-name: - - s8b3SINXiq4yUQ7D+hkzg34bDluxs7CTY+E2hkr8Adc= + - qrOuAmKdo3dOvDfch9gQBrCOgmtUimCApF+pvGfIBgU= ocp-aad-session-key: - - kzibyk1wfJBGhR3zNM8uR7vu7UpFcjqob5_ve7bJ9ErPGlKzeyZTLwzTmuq8_3pAlNRmLs-Hzpnq99_uJmL_3UsO7PELk5lN3SrsuyWiMHCdzonwy3P1IsdG2SANis3Dyej7DUKiwI1WT4Lh7YPpUAWLzX8bq8YACGbvMH_6Awo.UBwDVNXDnM_SPQAwDVjMklRWQqA-UF9xnU7DIle1cyE + - BuMgNO2e9LG_bmRluvNYPZrS56OOEeeFFbCuPtIwaLDgzhu5NAK0kPKqOlB2N0CcG_0pean_pz-6A5QurHNC2U5_VYpBV4Ed6JZk2sn6r5f0E0VO9scs3Rxo8ifBKOhPl57kO-MG_vypiVP87xJR5dt85kre9xgKO4cMNdlMHWE.zVbuxjw9EFlpoGEbtm6-bzTCCBZyEBGWGYbZ68jql6Q pragma: - no-cache request-id: - - fa2fcdc6-0b60-481c-821c-52fa71f2f7e3 + - bdb21158-d31e-4384-8a89-8e9f5c47ce1f strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -640,15 +640,15 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -661,19 +661,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:25 GMT + - Fri, 30 Oct 2020 02:52:30 GMT duration: - - '2313875' + - '2195044' expires: - '-1' ocp-aad-diagnostics-server-name: - - Pl+D9ryiQe1B9f6GgOT3I5ybZoAtjIUuBe3eXaLhY/Y= + - 8jmEv40UNgTYG1ahmYSOMqVvFAvC3ONUZG+RpQHOewI= ocp-aad-session-key: - - KF2HYSBfXWXds5ys2B5bs8gX_00EwiEdxRZjbq3yG6JcsR7HSRTgpdoebXcfTm1nhPJ4so8IIkMJLimM835gSbg4YguG3iH-LTbJIn5dQ_vnyitHXo34L7Ao0rsCw4UWh-0iIuyPB07toNjhV1xYPosZ7lQGgLi-AtIUphlPVSU.O1Yl-2xx_gF7TTVavjYKXG8FF21G8ViJTSOu1bjPyUU + - fc-TlidobsBNSlv7l-SJ7s4lpPANZ7Wme-NMsINxKIVLsom5C0mPWMoxgL4TdoW_lpA6kTOmKu9bg0V6Lmv3nirs-BUf10G23FCpeEq-_Jm18AOKm_P1j6MqRUvhaiiK3x5PubTncAxq6QkeklLUtqKtTTitu9QNBcYUxCVhuBk.AjP1N21daG80zOtzPhJ2-Ir9_Krw5V2BVPnoLD10j3Q pragma: - no-cache request-id: - - 63a23135-6ed4-4977-bd9c-3d96e4f4fc5f + - c555495d-8db4-4473-91b4-f002061847ea strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -688,7 +688,7 @@ interactions: code: 200 message: OK - request: - body: '{"url": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/ce8da55c-fef6-4527-b815-847aff78e387"}' + body: '{"url": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d1730585-48e1-40a5-b9a3-109a7e390e3f"}' headers: Accept: - application/json @@ -705,12 +705,12 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba/$links/members?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe/$links/members?api-version=1.6 response: body: string: '' @@ -720,19 +720,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:26 GMT + - Fri, 30 Oct 2020 02:52:31 GMT duration: - - '5862144' + - '3326026' expires: - '-1' ocp-aad-diagnostics-server-name: - - OGd52dHkIHcaxAyeCQfct4XNZH6J5AlyMhbgNvkrhVk= + - qzUdBQGOibroGQFwz6ZCUVQI53uZ9Zm30oNh7H5WDK4= ocp-aad-session-key: - - 19y6jplUdFw4s0PQn5P4oHjgtTlsfXKqv9AOIgtZSmmn7oMg2HcPINzr8eFFODEnEvjw0s4nzjTEHWoAY_uufuA1YsUpVbU4e3HtFVKoeao3bQkOiaN4Pz0-ppjEjCgttuMPWm2yCtHIi9uaBGuPAp1j6sT0J0o-pRbR8h1uK2s.wb0nJEW4uBzbfpz9Gz_xrkAGM-TcX_7dO4WgERmrWVg + - 6r82iF2-yP1q1DzgpRaP_t0DEzdGEZuIAa0eXddV_U1JjKLXLD5NnFcU8cuB-ZU5-NPPZq9ERCByKp1_CpmK76SoFP5nbYg0RugOq19SIuUYAXF0VG92yRqch-LTvwwC6RCuOMyy1L2aSNV13yNS2qeTWO-2sbMnvY9IzC6I0vo.bAwT_J6jik6mKI9IMTCT8KCkx_WnYvuswTXMoEDzZjQ pragma: - no-cache request-id: - - e891952d-2be0-45ff-8788-3c871e8e8bac + - 104b2542-8058-4722-99ac-590632a1c989 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -764,15 +764,15 @@ interactions: ParameterSetName: - --upn-or-object-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/cc380d58-0746-40fd-b4ff-e32a73ff0b34/getMemberGroups?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/5e6ead1a-543c-47e1-824f-a5ef419d9d46/getMemberGroups?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Edm.String)","value":["acd05d7f-ab36-4c2a-8b71-ce973e36ccba"]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Edm.String)","value":["ab7e5f9b-076b-4f59-8882-9aa88f9af1fe"]}' headers: access-control-allow-origin: - '*' @@ -785,19 +785,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:27 GMT + - Fri, 30 Oct 2020 02:52:31 GMT duration: - - '4576899' + - '2305973' expires: - '-1' ocp-aad-diagnostics-server-name: - - O6k4TMcsCADbVQjdMvf+VxmyPOahJWvENPBZhXopqYQ= + - qrOuAmKdo3dOvDfch9gQBrCOgmtUimCApF+pvGfIBgU= ocp-aad-session-key: - - Pt8iq2UBImPuVovlX8lnEQjlyyIDE8lJcS56mnotNQ8TBFh3g03wHQSAVm7SQZLImQP0xBElWc57uIkQha7POJu6vPS7G4QBL3dPPxjoWPS6w5jKincnqNKz_dazwhPf_ukdeTNjholCuV6C4AXrotLzmuBB_HpAPNwE55QGGig.GiORzm8lNxhZP8sdHtFbzXlMEHfudWJiSzVQoE_V1UA + - zwk0rT6kpVp9E6MhEA_gJ7dMWBQbC0IQSj9xjbrEppBbg-Usprr--WQj1KoZDoyPAOhDojTFyRAjE7A9gR4_VZIvTyd4MBTJntQMmfQudV8hE7NihVLXElm184XJC8paAVOIHaNFHIwBAMlYVPLaETQmkq1O8H_O_vl00JmfLEQ.GjKBxXJiSMu0bvGf_p7ldudJPJFr0uQUcan0A_5t_KA pragma: - no-cache request-id: - - 56560006-be9c-4f99-9f59-798b08538e98 + - 8c85e2c5-a139-4db8-b760-8193b037efb9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -812,7 +812,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["acd05d7f-ab36-4c2a-8b71-ce973e36ccba"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["ab7e5f9b-076b-4f59-8882-9aa88f9af1fe"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -830,15 +830,15 @@ interactions: ParameterSetName: - --upn-or-object-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -851,19 +851,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:28 GMT + - Fri, 30 Oct 2020 02:52:31 GMT duration: - - '4426873' + - '2267465' expires: - '-1' ocp-aad-diagnostics-server-name: - - qD03Phkyp3PESyOCOq/UWezyOoJRSPWoF1sQ7pSJmlE= + - Drw2XA9KyQgsrpvmmqtwgHiZqOOXvdLCC08yhhod2oI= ocp-aad-session-key: - - L3xr-JXh15WsRJi19XFxtfF68IKU1DeN4Jg_nAvuM7as8Hd6hSgwcFArP4C7ULifeC6Gt36wd2Grkb-Jt4mrUFI9z2pH-mkdGVnDtDdB8tnLWM79nl6AEiFe_PTUgC86J7Ty3hQralyME7wJWmRuhYLIl7fnkCkGxa63WlbgBBE.qycxbzLY0JOe2ccuvmI8Ld3Oi6F6RWYQXLDzDyZZeSM + - lYNTYZHqN-0_jL-qRUwsb3EVxbB_f160utD3g7buui3wGWT1Lx9aUBbey97nHlEI7bjLaoItPAwznArEUHoiwzE7HkClhU47aJZXoWUD8Ys0QgKDW3SaSdrBg1KSd8CgNUBr35KRhgAhbyUFR4NbiMkwPCXqXRGA0pLnR_ud6VE.ERUJDR_L70sILMqi1nyT2uQk9OCDtv4hzAoTxmbpbx0 pragma: - no-cache request-id: - - 97916ed6-3a05-4951-83f2-c6756153eff4 + - 7852816d-c48c-4ddc-88d5-66a412997aad strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -891,15 +891,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -912,19 +912,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:28 GMT + - Fri, 30 Oct 2020 02:52:32 GMT duration: - - '2257978' + - '2175600' expires: - '-1' ocp-aad-diagnostics-server-name: - - 51iBJpC99VT0XE2E+kBdfS8ZboPQ82X4Ya2wf9P8Ew0= + - EVLtQcrJ9JxBZUfYXhNr3D4P5qtOPgIk7JssC1AjEQ8= ocp-aad-session-key: - - _uOb5GBL-peTgj-maxYfny1pQzpXp6_fo2YMlTvXrXTZ-nvkwASxzyO9XlWSFDy0OR6H5J_JcpSVgZV5cqX_Um5OHDqpIJjJ5A2SpI1Nji0y6kbIPBJ5DmyueZG_IX2cRTLBksuJCd__R716PRePkxLx8zzjEzuJ0mOZiYhSDDI.dAwU0UO3-OpIqA4A0P51TphZRqb5p2WhfsUvxtAdqNM + - z_obZYxDX4xaqmoHuZV3odhkrI6eZi1ElQf7Q-l2S8jEyo-Ilg_P34OB67AZFGG99q9ROzlK7IewY_37Bd4W9UHtR3m88j-l5QI8PXAJfr-rkisyMGRIVCHxsv_iHa5XwAb17MPh8A10toqpAxs56lqoSuo4z5sXcY5Fqk_Bjz8.lGbagHQ1K6vBdOoT6bCfGugOWBpDxyRs8fTohurYgc0 pragma: - no-cache request-id: - - 474bf07e-22a9-4f36-b1f8-0c0f15a412bb + - 2a7883eb-a274-4cfd-bca2-1f73fc278a42 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -952,15 +952,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}' headers: access-control-allow-origin: - '*' @@ -973,19 +973,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:29 GMT + - Fri, 30 Oct 2020 02:52:33 GMT duration: - - '2273978' + - '2291909' expires: - '-1' ocp-aad-diagnostics-server-name: - - psE1e0eMCRsW8VuLfPbL8q2rg/AoaKNYa0VRdRKfMjg= + - Ws6GRCg+Hepi3otMIa0V6LVnCwaz0dLcmTExtoiKMfQ= ocp-aad-session-key: - - _UKCETjOicpJL1TOKQWCnIJUsKODv5lDjbiYfOQqHCmwoWleMH3qe8IjOp4LbBQuewO7-bj4ZL5uydOvZiRHrkDAYcfRghvTiC_9ws8Khks5Sim-_qP666XYqHDwcZ_llBI6Fww6W6IeFGmukkWyLTAw5iE-ssuJVGkTs_zGMGU._6UGYcQ6d4FxBmO341PffqSMgyQgU3cgR666P71Ee9c + - FtWNFb7_ii-00gr_fBPu0u5JwZK-gGpPIGQCDemVAYkZSF48GCt7i35SJhcW2UO77jFfeQkH-JXRyHFUmpTUREb_GKHC2CjBqYIS8eBImBafwZs6eD36smvRkjC-ofa1Zt2TPbYnsHPBQijvPFB6oDcSoJHhA0WiPgWZWeOcoN4.YqT1QgVN87GQMkMUoxB4fyMseIwAnpx5ncN2VaCl624 pragma: - no-cache request-id: - - fb518fc6-04dd-4683-8e8f-3ba6647068f3 + - bb1cd33c-685b-45f5-b922-492bd8ad9b1d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1013,15 +1013,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1034,19 +1034,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:30 GMT + - Fri, 30 Oct 2020 02:52:33 GMT duration: - - '2307463' + - '2337460' expires: - '-1' ocp-aad-diagnostics-server-name: - - 1K8OkAggl/7n8gRFRTrj6dGeUxfOr2uRL7vGQyv0S8k= + - J+aVDgW+/YHScDtPEvDYrL63KMQfk8PtJx95sxbfdLQ= ocp-aad-session-key: - - 2s-Uc0yVP5rJ5kkUxdjmNySejww1b4iyFy1J0hOmT5PxCnWGdon4pO2D1HX1qyO376s4ne98f0czW2o2ZMYOTiJpSOlfJ4DxWy-5FDVSVPtHPhBm3mwltGND7g2pbZYYOXJ2yUBPNVaqOWfS-Q20yzhxzg2xvG6h0wZS8ETRnoA.z1vHSOVUKfHEqGhDOValwLaKAO8LoDt2ajhBAEWdYC4 + - S_r4TXQXrFahF8GPgTQiK_ZGT67S9uO0Fr39fKkPXHLph7rzuOsRx8VFjRAFNJ0oMc4SvXeBVqS-gcCIDVm44DmqNXlW2hNted8OXKBCCzWxv8ZPk9GXb9ZpMG2YHUnPNeGLi88WISQLgArhteStk5Rr8_o4o4np84ziJQPHf4s.z8A6QLaNOU0XRmC7ZdTbV_pTMYanujvkhu3hi5SOkfc pragma: - no-cache request-id: - - 116a45ad-436c-41a2-8575-3b48986eb1a8 + - fede8ddc-e7af-4106-9aa1-54e1294012b1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1074,15 +1074,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}' headers: access-control-allow-origin: - '*' @@ -1095,19 +1095,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:30 GMT + - Fri, 30 Oct 2020 02:52:34 GMT duration: - - '2252585' + - '2318100' expires: - '-1' ocp-aad-diagnostics-server-name: - - PQZJ1pwQ3eJmuzap5xS4uSZ8TXaBeCtl9AWv9C2et6o= + - Ws6GRCg+Hepi3otMIa0V6LVnCwaz0dLcmTExtoiKMfQ= ocp-aad-session-key: - - vmp_rYahMNhj08GMjPVIxVuaxC5aaIEHztPpKey4Ue5wyRmHpDgl7B_N_rod8zxvSp07U8UJeBTYZS2J0KoZaS8q6j0wE1nnrOirWFKoHlnr92om3bdwSmMu2-a4S_VbL_195x5-bCQAEEi45MuaQs-vfGeeBUMWlAc_WQQgpdw.zrInUwkMpGwYdHUjXvKM7fyvY6Z90hRSRFU9SmiRlYw + - ZAD6sXtiBbBNHYepgmO-w3yCnu9j_yfEHgHoCwynqLywi2uUcK6hO4nMecfeg2WJbXLy6gYjaQ9NutRf3cOcVhqqi_mGNa4SOTwz0FCOoMz4NjnOlAFWae1QO9jUXAQ6nFZpCW8Bg2zSiZpR-LPKGZFw-c5vRCiU-WsShH4Ap3A.CW92pXtZdD8JsqyENkfWkETE7F3p2JiCeGbkDmWDW9Q pragma: - no-cache request-id: - - a50b2f09-9ed6-4806-abee-48b710921045 + - 416bbfb9-6867-4b53-91ba-8699bc042a7b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1135,15 +1135,15 @@ interactions: ParameterSetName: - --display-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1156,19 +1156,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:31 GMT + - Fri, 30 Oct 2020 02:52:35 GMT duration: - - '2243228' + - '2465644' expires: - '-1' ocp-aad-diagnostics-server-name: - - 51iBJpC99VT0XE2E+kBdfS8ZboPQ82X4Ya2wf9P8Ew0= + - cAVsKsE66TYakbqGtubIAtWvSCoR9a+ArvTZEZ5t0Yk= ocp-aad-session-key: - - symPz8l2OFBIX0TA7qgVLE-3mj7hDGgtzaSrEtXXPDfC7NxYgWZMhwGY18E9g0IClc3-IZWbxmgnSm6B-0qAfLUqwX-IY48QnfrV4GpgZ6smwCv3rquSssDxIw1OQ7z6gbRffkez5jv1U_QTuTXIaV9mrAiSxqCgxOKTGWJv33s.4hL5TtEOGkU5kbKBTGHWN7g2Y5cuDn93l0Xq3cSsEfg + - doOB7iJvnqiGSiLUIXfCpaVw_HznqpYmRBCfYAQmSzrEZnil-djzwVkaKPV_kxUVnsCaeW2ZIo0msY4_YHSRVmtamwm-KCXsfZVyd7EOKV0I55eNsoKfwQxVEYngt-SvkGALq2CLZCBeFqSmhXL_eDErwRT0SIosO9o5wuxqrqg.aZhtlMU-U7VZwaDA4mnVB9M6QF77_-vPdfdLtFNwbkU pragma: - no-cache request-id: - - 7d896353-8986-490c-8962-fd152b7daac4 + - 86b75dce-fa9f-4baa-bad5-50a56cd0de83 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1196,15 +1196,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1217,19 +1217,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:31 GMT + - Fri, 30 Oct 2020 02:52:35 GMT duration: - - '2301656' + - '2202746' expires: - '-1' ocp-aad-diagnostics-server-name: - - z0Z34TY3NgYYlc+kqzqmcGlejfnBOsEZrgnki4ewTsY= + - LMj1eduOe5WlglnlYAQDGGtFqJfS3h/c8NRtukZ9alQ= ocp-aad-session-key: - - 35uEiA7Qvm3iGI1d9g0h7WzJ1Orxqs-RTW79My3FulhzZxltT3K73KF7l13jhC2Fn_V8FlBo8YOIOJub5RGSLxZ7ye7ALbgfonFMa3a90VFMkVWu_OkrVAyt57--pQunXQByF0aVUTAmkFCV6VWs8h5ZprOqiEXJUujOuh3eXx8.F3bzmwMH3iesFn8q_nP6tEt3m_R8r6e3DDsWO7DA-3Q + - uk6mdUbR5L4GQy0xfW3SqFlEB7Lf9oz2nwpxOcOMg13R4ypk7ttBZDUh9X1noxLU-__2sn0BUOP4SR4k7nzFGZdpMm5kSNlHbek4Ko9SnKmT86hpZDZd1i_iWzAlTugLPnWVnGpboklb1GVatrdmoImNOknoZq7WuD1wOpirVFs.cwDGbAnvm-EK_mPIIUuJNGKnMYHNC6CokNurISF_pVE pragma: - no-cache request-id: - - c3da7dfa-d415-4ebe-bca7-1d2715ed1061 + - 29a3bf45-6b3b-4206-a398-6520c70c976a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1261,12 +1261,12 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba/getMemberGroups?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe/getMemberGroups?api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Edm.String)","value":[]}' @@ -1282,19 +1282,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:32 GMT + - Fri, 30 Oct 2020 02:52:35 GMT duration: - - '4433734' + - '2214211' expires: - '-1' ocp-aad-diagnostics-server-name: - - kmB7FVMi+Po5SgVrAxKy7bkOfgn/pf6EzHBiVu6zhnU= + - qbmlHRZ24ikXGPs6iC16BeVhqxmVUI3e/2/YpQxlnao= ocp-aad-session-key: - - dIGrLNh9pbWtNbiQPcqxLaReRopF2X_CkpTtcO8MDRR94mh0H-Yo95WHo8aw6h1dfi--bRtdjXF5ZwtoSwv_2uSdW02HYHrSWPb7O0eD2XCkdD_6taQ6IJptujgw13Q-6AMhPgsYUopENxj6PThOTe187fSIO37T57QO-fzamTw.Y-IRcYk5eGZjy5W0dn6Z1sOMdNescOG7naTZuLfhu08 + - MCKJGOHb1OdEMuK2rgvsjTOU0zYOkd_U7EunXA0nMswL83v9Ov9F3JvVeztlQtfI__OVITvb5DSTHm1CBJbBU3r9GcABiut1Z_XLNPbQtUvZ5Z21ihACxvh6ijioFNXXfwI-KMHFCDFqfbMYOgA8pY0oZCIFg6A6GDfYrW7-viQ.8ZCtCbI7ZKNf9hkzPwADc50OyzFzLWpUvVEIWM0Wab4 pragma: - no-cache request-id: - - 19a0b4d6-1a70-4402-8a8b-3cf49730c36d + - ba64acdd-2e90-4969-9262-b84d49d153a2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1322,15 +1322,15 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1343,19 +1343,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:33 GMT + - Fri, 30 Oct 2020 02:52:36 GMT duration: - - '2194784' + - '2303759' expires: - '-1' ocp-aad-diagnostics-server-name: - - ZtjrL6855/1nWsQgXw4059xGL7CEBjwxyLJieTbtGTs= + - l6+seqgeiDph5xOWsviqRFo+MYCGYj3S4Et4RKsy3A4= ocp-aad-session-key: - - eRdtBuVVY4mO6br1kLTcX59kscX3Y0UlfqwhEFRlLyl5AbilwQPRLA_NXgYF9nnL8sIC11kwYyGnt6b1cx3tW4HcVvjxsvziGH4omDwBnUSGOPg-BVhTFwGGNqCSKG4sglHG8Kb4RL09mUlqIHhrlvGfkspYFPh5-pgkd3iS26U.YoUsDZ7In8xJmgKpq99PMWXZFZtbLBL3NHiyE-M1UGM + - 5gz4trgTdNGzDkfdTxyQbtlkh_7gB9oYGFWhNzr4Ra0TuPOZxXQBfEF4GZZeiskzxW7H61dRI4o36A63gPgRSSeufa7LziYR2olmK7-MDNrjXeao_bv-WWpQszwx4AEuMitM797qU74eNxRuSmeCCZXlGYoiFKxo3bYYLOlAQD8.vBuowlpK9wMOYZvI52Ujet4Yt76kqh1eBfi4AiyMKhc pragma: - no-cache request-id: - - 9f771852-5602-48ab-9c68-7deaa133df6e + - 48505f43-0347-49cf-9d6b-ce1ff233411b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1370,7 +1370,7 @@ interactions: code: 200 message: OK - request: - body: '{"groupId": "acd05d7f-ab36-4c2a-8b71-ce973e36ccba", "memberId": "cc380d58-0746-40fd-b4ff-e32a73ff0b34"}' + body: '{"groupId": "ab7e5f9b-076b-4f59-8882-9aa88f9af1fe", "memberId": "5e6ead1a-543c-47e1-824f-a5ef419d9d46"}' headers: Accept: - application/json @@ -1387,8 +1387,8 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -1408,19 +1408,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:34 GMT + - Fri, 30 Oct 2020 02:52:37 GMT duration: - - '4529288' + - '2290519' expires: - '-1' ocp-aad-diagnostics-server-name: - - OdGMxGQXjcsEi1Ni8TYUlnct7L7Q1SWuomHGX99xfas= + - N3PCZMXZPtnUmj5BOxqR9Z+ta4LnY9KwGDmMWhv/G1Q= ocp-aad-session-key: - - PQ_31BGIqroyeKn7KiDSsKPwn4pDjJNnKOct_U9KDXqWm9m11mJgNsTbo_zomOYkH5R6WfykSkFZp9Jud441SuxOvDm6GGvbke0hEFHGQK63P8B0vJYHDBeLZ73OxJssuiMtKlxhSyM-W9HZz75lvtBOZJyLImd8Qhj1U16HXZU.cN_RROskkrdnSn6snxcOw8eLuGsucw9-gnnAkky7wwI + - YEf54Ldus8d0LJUipTX21jslQdPRjhQHTRWeFlBFscqrFBO1xNRhMAC5wv5D5wVAn-1Os2Itjd_tihenlPqV0HSTB5AEIeRAIQKy9hgRty7C_nhWI-gyG7m1hEYzYZJ_rvjc99JNrOVNDC4gksZt8O75AO1MoLsw-Y-xg4SfgyA.ksmrERemd2kmXn_s55zMGntOuOiojss2rpl7SZPqbJo pragma: - no-cache request-id: - - 5a43b8b6-9c19-4a8c-982a-78e69d50cc39 + - 645f1738-5b8d-4e57-a935-bd458e573b40 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1448,15 +1448,15 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1469,19 +1469,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:34 GMT + - Fri, 30 Oct 2020 02:52:37 GMT duration: - - '2306029' + - '2590021' expires: - '-1' ocp-aad-diagnostics-server-name: - - z0Z34TY3NgYYlc+kqzqmcGlejfnBOsEZrgnki4ewTsY= + - 7BAanGdATGg5nZgUsbCVypNYlrCgT6m/HudMUOsDumY= ocp-aad-session-key: - - 6d4vynSEIuKVORAvmZ9YcZrqV9krnVjdYXsxaZIhRrJwIlPNYbgNkJIXdxnRVwmyjzjIEjgN8uq7_9FAcDVhdQ5xKpPjYozCxhA3zUt3FADwHVh3jbFzhQbAOhkFN19S_6-6qFAJcqGpClKeK-ljyZBsW71n0-CfpJUU6Y1Cj6o.g7sJUyA3oDL-NX0NSsB9-aK8sQJPeNx31BA_IoBWrDA + - G8cPH6nOCFFufkBVu4IqWkXp9cfEVQcEQq3DC8BkekjmgWQZoEbtke_k6kshdXMr8fneIooJa9sgMWXwXVJW_ULX-tbZiJkbTTHTeiKKYz6KiTHWgdiPtBueiC8N27gVndF1fiYE65P9opokYSpycQvc8vWWZbl2gPGs1uIRlj0.djOnhx2n87XrKlPV2zcSHXDtB8NLCeRASaO1l-pUV9Y pragma: - no-cache request-id: - - 07eba522-e6cc-4ddd-aff6-8eb0e4c10547 + - b629e231-29e2-4584-a2b0-5c8078d7b63c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1496,7 +1496,7 @@ interactions: code: 200 message: OK - request: - body: '{"groupId": "acd05d7f-ab36-4c2a-8b71-ce973e36ccba", "memberId": "ce8da55c-fef6-4527-b815-847aff78e387"}' + body: '{"groupId": "ab7e5f9b-076b-4f59-8882-9aa88f9af1fe", "memberId": "d1730585-48e1-40a5-b9a3-109a7e390e3f"}' headers: Accept: - application/json @@ -1513,8 +1513,8 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -1534,19 +1534,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:35 GMT + - Fri, 30 Oct 2020 02:52:38 GMT duration: - - '4109221' + - '2434894' expires: - '-1' ocp-aad-diagnostics-server-name: - - am30Y1euosQgKTMVAZoBKwAL0k0uvD3D1s/3xbcYXKg= + - H3HB22IRxXel155fX12LL+vB57+gYJv+1w58AVrfekc= ocp-aad-session-key: - - nALMgAHDkKJhLujfWs9YVjyarqgXQ0STmFXRnWLGgCs9gmugd_w66zohmdz5qgI3R5Zcp4P8pSGl5atYlA45yiPgBTjfJnVynERFB0JAQ3YRSj6ngPAwrryq0YgdMOHuSIVXWGyDQJxejhQUJLF3JfhkAGwcgK9_sqO4i6MzDMU.MeVjEoobtQJIrPkLmJrklRzdt-85x9xend2t6d-ZYqo + - TfXITEV_p-sFSBp5STK2EyEQ7WAYtBBD-JySI_HQTK8EI4oqSur9XGC8KeDosTTDwBGufwPpMnvauJBvnRWgg-v8KlonwR9QwBA0iWGF2oldRsJVnP_hpOUBSOteA5FKnryECco94tsZSN1oPzaPsv-3e7LkcqrzUvtjbwHta_k.i-qoRNBCDGhBCdMKZvqSh78IE7rRm-vonhZrImP4ex0 pragma: - no-cache request-id: - - d34ee220-f216-419f-a202-57e3719466e4 + - d42a720c-4735-481a-96fa-97300cbf05cd strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1574,15 +1574,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1595,19 +1595,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:35 GMT + - Fri, 30 Oct 2020 02:52:39 GMT duration: - - '2199622' + - '2279627' expires: - '-1' ocp-aad-diagnostics-server-name: - - 0+nBYYNlPnl3/H/fUvx6oeuxW6RMny3hEOAJ2BrjYsU= + - BnOm9eidzVvEzdcjEkK3IqSSrIC1S15Nz8usiy4jLaU= ocp-aad-session-key: - - TirJHCUxwoquV3DbNSuRcv7TX0VWcuxC70tF5YlOuvqSN0Oh44ZfS08F4yPtxlKVO34WQZe0ehJOBLOeNR2TDeUudiY_6XVncOlXp_0nVY2k2d_Z8El_qdfdZnQMZjYCug1dGyyazbJ3Lavpbas9tys6RupvswCyPBtvYHyR97E.YjsqGtvZk-CRT_mxkpnh4zNtzUnrrc6a-d7BDMGf8rA + - OxTUkPts_mO7_OWzbf5JBlgZvXMEfA8gyvHqv6LYtn5lNszEtKiFvFkacF0DSZzsoA0_96prXKQUPY489n31KHiFnaQ8Qc5PKGZLnstyETW8NvIla-WGw1hTnknjX_P1bqI0BLNbupH_9RXVhp5HEIBi4LROPugKohA85NWX2dE.Z6k2Hxs5bt7wv1DwH8h38qaGC79M8Pl3dc6Fu2DT2eM pragma: - no-cache request-id: - - cf138b92-c192-4473-8130-b8e8437d0ac1 + - 7dcbbf5e-a11e-40a9-9986-c3744a8851f0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1635,40 +1635,40 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba/members?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe/members?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"cc380d58-0746-40fd-b4ff-e32a73ff0b34","deletionTimestamp":null,"accountEnabled":false,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-08-21T06:26:19Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1_new","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme11","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":{"password":null,"forceChangePasswordNextLogin":true,"enforceChangePasswordPolicy":false},"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-08-21T06:26:22Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/cc380d58-0746-40fd-b4ff-e32a73ff0b34/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"},{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"ce8da55c-fef6-4527-b815-847aff78e387","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-08-21T06:26:23Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme2","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-08-21T06:26:22Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/ce8da55c-fef6-4527-b815-847aff78e387/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme2@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"5e6ead1a-543c-47e1-824f-a5ef419d9d46","deletionTimestamp":null,"accountEnabled":false,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-10-30T02:52:23Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1000001_new","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme11","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":{"password":null,"forceChangePasswordNextLogin":true,"enforceChangePasswordPolicy":false},"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-10-30T02:52:26Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/5e6ead1a-543c-47e1-824f-a5ef419d9d46/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1000001@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"},{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"d1730585-48e1-40a5-b9a3-109a7e390e3f","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-10-30T02:52:27Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2000002","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"deleteme2000002","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-10-30T02:52:27Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/d1730585-48e1-40a5-b9a3-109a7e390e3f/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme2000002@example.com","userState":null,"userStateChangedOn":null,"userType":"Member"}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '3087' + - '3117' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:36 GMT + - Fri, 30 Oct 2020 02:52:39 GMT duration: - - '2255880' + - '2916161' expires: - '-1' ocp-aad-diagnostics-server-name: - - w4Fp5QvpSZVkjmrLeuPuZ5uIQStd+cB8qrQqWrpH8DM= + - H3HB22IRxXel155fX12LL+vB57+gYJv+1w58AVrfekc= ocp-aad-session-key: - - BamlRGNIJnWoXITPXXlnq1oGM_mpIPH3ziQ3e2oF_M94_5ctQoGW8rk1u2l-ZA-sKWEItLKbwRYcAVdjGb7K8rarxzdjzenNUwLvlu5WCQcc_l2ziD_cfT_fi3RqYaPKCY69xxLVKaoNddkItAOCRngvDbUqn_q_cQVJGPMH0CA.UkXQr4TLbYdnbdGUEmYD-aPwmOhQ5jh0f8-o16Zlb6U + - gRMQ2AM44bGCVF4h1rX65sQ_938h-4Zo5wWv-4iHEptkom2_lgPdfQWEO90p4rAyRqt5JwA3oBAmz0e1Ok_C-SdV_dCm8U9OlXTKgyjzSryUVFAqi0mBZif7knngwcnUSHKY6-ENcYYwTlSGBKbrEJRB_OY_021b7zMwvhIRh7Q.W9QsiQPzlxgrtMXRzH83fGCynkU-HmT6PnLhtz8OIKA pragma: - no-cache request-id: - - c8f2e8ea-b6a7-4264-a9cf-f79853e8cf3e + - 3faa301d-332d-4e08-acba-6f2af230baca strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1696,15 +1696,15 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1717,19 +1717,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:36 GMT + - Fri, 30 Oct 2020 02:52:40 GMT duration: - - '2332180' + - '2269207' expires: - '-1' ocp-aad-diagnostics-server-name: - - iuFONCDuOWoJ730FHlBCSiE3tw5MP6Gp0oI38Zgl2ys= + - uEj+wlcZ615wU2IQ1HKmSoQK2kWhKsYRKEBSkpakN90= ocp-aad-session-key: - - GOtKjfDyOTHnBcBzx9K7btARoJUtkcYvORRgX_RntrlI6SAg_kOOXJXYkuPKzcUa1j0WMZvisKKKyoZY02XbxCLdwrZWnj8eivgPLCXLy9UfdfobTfJWoxHO6Wv7tyJlTmYzm-Mh3_Q8db2tkjTPs5omYnzb0xopYnDvGNn9bJ8.swkvuVapgTXrjsLC61t6oLjTsX0Zvd68WSDlqX8Zz4A + - j5QPa760TcfnXYpqkzgcxUKJtf3TvfvXrXxvzpGgc8s1ggGjCYSWjG8eWXPDaG-PKVwR7mNFU61rOzhYKdq2BDgt8Nkm6o1O-VZHl4H6khY9st1T26xMrDfeX4nRAdoa0Eww_XpqaSOMkznOfogeBEUw7ZrL7HqHa1FgyX-ZMH0.2JGT3HLgmIkYshdfe-gEVdn0nza5XJLFmN0BfCTN_Xg pragma: - no-cache request-id: - - c3cdbeca-a019-44c7-90ae-5bcf8c791f11 + - 142e47b4-87cc-489e-921d-1af350364a3e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1759,12 +1759,12 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba/$links/members/cc380d58-0746-40fd-b4ff-e32a73ff0b34?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe/$links/members/5e6ead1a-543c-47e1-824f-a5ef419d9d46?api-version=1.6 response: body: string: '' @@ -1774,19 +1774,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:37 GMT + - Fri, 30 Oct 2020 02:52:41 GMT duration: - - '3154209' + - '3396209' expires: - '-1' ocp-aad-diagnostics-server-name: - - xRs+dGtF1cna6moTXp41LvB1EiQYFbmLsdOzyB02jr8= + - c0oIeGJh7S6GD841mysRw+FhOz+qp0eRP87hgN2tEAo= ocp-aad-session-key: - - tOb2UT_7vP0I47MBDJHojHqkRita4Kf9ZOJRUuBADLyZOMP2ftiCnVWn0YAXkNBrFm5Vh9C1NMqTJ1yliQgKJ9uLr1fNNw6OEMEQ180jeV9PL39v__Q1ICh9LP02R1bgh9kiQ3t_HZBaLvmb7Hht-NsqnAYZJJw881UOrFpkFz4.UkOJ3C4AfSuDoEVy5FAh5_I0A1ljWN4zCXef8exusJg + - ok73xuYriNBSaSj55N1j_gQpMf5A_6GxImR1sbZQo23uygzcy7NmpHW8JDY6oeNqvPdEkZay7dgaaqZ-micGIU1MvDLrVcY95dRynJISLKIAoK9-a0dk-iysYw_IMT9LPfjlwimuio5t-xtR4TcgqCyOl0kEa7stLaeEuV3BRzg.boRgZGUSWZoQBzpV5onWNOX1sGXbTRerHT19500dYqI pragma: - no-cache request-id: - - 07630fdf-2fa7-4666-93a6-c006eccb2fa3 + - b1a868e3-df44-4aca-8441-7407cf8ac331 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1814,15 +1814,15 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1835,19 +1835,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:37 GMT + - Fri, 30 Oct 2020 02:52:42 GMT duration: - - '2225131' + - '2222558' expires: - '-1' ocp-aad-diagnostics-server-name: - - am30Y1euosQgKTMVAZoBKwAL0k0uvD3D1s/3xbcYXKg= + - iBLPAV+mEu1yabKxR7hiHLRXeq9pAO/IjS9ArC3QLLk= ocp-aad-session-key: - - 5ZUHRNQi1WSdWFgtGbP5wVFue4ez4iDrCiPmqvn-6mebJuyuU-3HFo4xSsbJCDp2NtOBGFpMILNLDChhrbZwv-iRMLqu_U7pUCyiaSfM-Op9an7FIof3e1ka6RUh1uDoYx9Hfk_oO1jkJ22WwHuvh5GEUVZazwAbHUH4RvigRL4.x_cpMP1AqBcgF3cWsiy4ln8_iSZbM1Wx4fjJ0tDk6zA + - PvzcB-eTzptRQ1TZ-8Qr_HcjF2Jc0Vfy9oj2VnXcfGPPxB2RPDxq9WhJmq_I0bG8jUztZSoZn5wqZ9UYgIoWKJq49RCOQv0z8FOWrZnHxIp6lq8Ul6oyBluWBp0WOixItgtFeRFrqQkf8-WfYAsRN9bVXIc17QIa5hMOOkqvtjE.6bZUvQ4XGD0c4FpWX-ixbuiyDNObivE0Rd9pv9w5GoE pragma: - no-cache request-id: - - 040f71fc-52b6-4a86-903a-6970dab31be4 + - 8de5d3d7-b233-4be2-aa60-8ad8dfa7ac5c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1862,7 +1862,7 @@ interactions: code: 200 message: OK - request: - body: '{"groupId": "acd05d7f-ab36-4c2a-8b71-ce973e36ccba", "memberId": "cc380d58-0746-40fd-b4ff-e32a73ff0b34"}' + body: '{"groupId": "ab7e5f9b-076b-4f59-8882-9aa88f9af1fe", "memberId": "5e6ead1a-543c-47e1-824f-a5ef419d9d46"}' headers: Accept: - application/json @@ -1879,8 +1879,8 @@ interactions: ParameterSetName: - -g --member-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -1900,19 +1900,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:38 GMT + - Fri, 30 Oct 2020 02:52:42 GMT duration: - - '4271833' + - '2216303' expires: - '-1' ocp-aad-diagnostics-server-name: - - cTgtNQkuDGr6qwftSfgSfUGBogf7OfXqQNU+jCyiv78= + - AO8aByeydM5hr4Nt08rI3IeFDTLsTL/1ZH6EpPaHXyU= ocp-aad-session-key: - - YnsU6n3N-vPVIcSPvbfaBxgyIAtgHdZ9v4HnAFe7OVtLSb_Alh5gpUZTdCUe9GFg0HPEcc_Lg57VQXP054zGrmnziZizkB4jyS33FbRm77K6LHzh8mZGAh_4C4dtWaxLuoHLJTgQVpyD5tOlgeWCIZMVJ528arMm0xR76ZBGlrs.xhS0L7T9lF9Z5Oj3N6Njpv1XegpY2xDkwFndPHTvwYs + - U9_3KoI9dwiZ7jyvCLmzdCD7SqJL_R8X_vrRTrFxwUlNFfyw6qU5lp6s3a1f9iSI_n8LQ48_UJLBL3vqcHwFW_8QVRaecxegVIYaA7GkusDHYYAwH9FyVBUvJM42fthSddhPgbcPamcokjpqbtr93-NBMZfS8QTtLeW9Z2Rzft0.5B6rm90He8Pubk4lVuQyxivC6M9Uzb_HDYVZ5B5d7r8 pragma: - no-cache request-id: - - e7695b41-c735-4b0c-bf4c-ea91a8447fd6 + - 8875cd1e-5b63-4bf7-a0ae-39809e36e6b9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1940,15 +1940,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=displayName%20eq%20%27deleteme_g%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acd05d7f-ab36-4c2a-8b71-ce973e36ccba","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab7e5f9b-076b-4f59-8882-9aa88f9af1fe","deletionTimestamp":null,"description":"deleteme_g","dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' @@ -1961,19 +1961,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:39 GMT + - Fri, 30 Oct 2020 02:52:43 GMT duration: - - '2249569' + - '2234415' expires: - '-1' ocp-aad-diagnostics-server-name: - - uXv8ZGY9PhQhOs4AU9DmgRv2qLnMCFf3B8vdft8Qz1c= + - Md6E3vPOqFLz1QkERrZZo6BWrUx/Iddg8pmWAKTOGQg= ocp-aad-session-key: - - Him1-6UtC86g3bKNo30H0GFsBHdfvGbyjPx26K2WlNTosubxESi1AoqY8LRwd6ayjuBhE992197Kd4RLrh4Vd_RBtBvwQDD9fwM7gm_QV0WXDLFjbPLQgWzZ6Yr9YPWfeUOLjKKaPp77zt7SRp1YrBPg7dJcfn350Lu2TC9J4Ik.i5TWlHUhmygZjsB8GsNatKbn3X7jGmb5ru7oqnoE9oI + - nTNHeOvKbVRX4LZWkRDGZu-cvZuFihIprgT8PYHOzY6EcYbUYW0PXMSd91-c0GDn9AmdVIIAbDTAI7jBP7ak6EE6Wvl7O2LVA1PqBhb6iKdYN7GKQvI9Wul-G3vTdh2YfgeEyKp0MRlyhTgzFgQwqCFHbBBvpzDrut3klR8sPEE.xkJBmEov-A5exDacCNTopdgrRWSDun7DULVGtQMerAA pragma: - no-cache request-id: - - d7aadf53-cab2-411f-9285-9f509dbcc3fe + - a4e717e5-bab0-4d96-a656-478e4d5b2475 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2003,12 +2003,12 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/acd05d7f-ab36-4c2a-8b71-ce973e36ccba?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/ab7e5f9b-076b-4f59-8882-9aa88f9af1fe?api-version=1.6 response: body: string: '' @@ -2018,19 +2018,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:39 GMT + - Fri, 30 Oct 2020 02:52:44 GMT duration: - - '3062762' + - '3292384' expires: - '-1' ocp-aad-diagnostics-server-name: - - zvWoFjuE2ehmMVgbV3Cg2Jr+3wQYeCjyzG9gzD1iIS8= + - N3PCZMXZPtnUmj5BOxqR9Z+ta4LnY9KwGDmMWhv/G1Q= ocp-aad-session-key: - - 3xUyaxnEMfWKUNq5liP-3hOw96FmflvWvrabWNMQZs5-FNDozHZi_SNFBVDNeWcD_c4O29UYkNl53nZrwvuCQSKP9XtsTscbrl9onyCsVHNcJwdVJygDXggMeFBI-nQz4YJ351aO5RecM4iq9grt8N1JKOqEBwv2wZNzK5tHCGk.fLjgb0s7X4pGaQctj8ybjJD5r6ZlCK8sLxEpQ5osjYo + - -Czq9Qzk1e5_q8QG5E3si06cryw-erpN5sONL_YGkvfREcYAmE-sn7YXj-e5mV128QMkrUypxwAl_JBbZF5DQ7eEDcrASkI-J9Cns_YN0ZGVoAAkbwDD_UgS5PdNeckRotLJkhryuZwSn8wVitGNf0RLTa334cg0ucWqe6Io4ss.E1NIunydskPZpVBuMTnBWpc3RNTKN45L2lWCY1o2Az4 pragma: - no-cache request-id: - - 9ff2cb4d-e8ed-4972-abdd-2134d59142b2 + - 9bf1ba38-ba6e-4fde-a92f-53afe900e812 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2056,8 +2056,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -2065,40 +2065,43 @@ interactions: response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"03dc86f3-86dc-4282-af17-988a0bb03258","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group - 99906158","lastDirSyncTime":null,"mail":null,"mailNickname":"group199906158","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04dd1e03-f2fb-4063-9964-03529660cca2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxhra7s","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"117b9f11-e493-46b6-a488-e8b573e396dc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200810160247381667","lastDirSyncTime":null,"mail":null,"mailNickname":"56828842-0dd1-406c-9757-b5ab3edea55c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"11f6a172-d9e0-400e-98bc-7a6a3c3bbcf5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"testgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"12af389a-3835-46c4-abe9-39d62a64c8e4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"test-group","lastDirSyncTime":null,"mail":null,"mailNickname":"test-group","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"171e4428-4ac0-4594-907c-5533d90c07a3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group - 68a27503","lastDirSyncTime":null,"mail":null,"mailNickname":"group268a27503","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f1b5b3c-130c-4a18-8724-2e4b4efc3483","deletionTimestamp":null,"description":"adfjaskldfjaskl;d dfasf;","dirSyncEnabled":null,"displayName":"xiaojxu-group-2","lastDirSyncTime":null,"mail":null,"mailNickname":"xiaojxu2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f703c9f-e1bc-4268-b7cf-a6a2ffe42f79","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouphwyo4a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1fac6b68-d24f-418a-9e4e-0a8d8d78d1d5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupry3cqg","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2cde37aa-6fd0-42ad-849a-33d06c0da145","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"jltestgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"cdf3513b-d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3325d5d8-e906-4d86-88df-3e4b2f2288a4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb7756095e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb7756095e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"37727b42-1e63-4fa7-a284-2fc0c924e402","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup24nwhm","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"38682897-e85b-4ab8-af85-96bc1873040b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupdcn4oz","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"39633499-b789-45bf-91a2-5de07b47d659","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupmvxlny","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3bf13c9f-50d6-421f-b0b6-f3ad5e6325cd","deletionTimestamp":null,"description":"This + 99906158","lastDirSyncTime":null,"mail":null,"mailNickname":"group199906158","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04dd1e03-f2fb-4063-9964-03529660cca2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxhra7s","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"117b9f11-e493-46b6-a488-e8b573e396dc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200810160247381667","lastDirSyncTime":null,"mail":null,"mailNickname":"56828842-0dd1-406c-9757-b5ab3edea55c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"11f6a172-d9e0-400e-98bc-7a6a3c3bbcf5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"testgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"12af389a-3835-46c4-abe9-39d62a64c8e4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"test-group","lastDirSyncTime":null,"mail":null,"mailNickname":"test-group","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"154d955e-dbb5-42d5-bf1b-6a13bc7c65e8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupkugxby","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"171e4428-4ac0-4594-907c-5533d90c07a3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group + 68a27503","lastDirSyncTime":null,"mail":null,"mailNickname":"group268a27503","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"19fc90cf-3a53-4111-9979-e0c7edf0123f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200901135543171630","lastDirSyncTime":null,"mail":null,"mailNickname":"34139795-26de-4512-9d92-f26dde4ea950","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f1b5b3c-130c-4a18-8724-2e4b4efc3483","deletionTimestamp":null,"description":"adfjaskldfjaskl;d dfasf;","dirSyncEnabled":null,"displayName":"xiaojxu-group-2","lastDirSyncTime":null,"mail":null,"mailNickname":"xiaojxu2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f579d3e-9995-43a9-935d-b97c5afa017c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupuc3vrh","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f703c9f-e1bc-4268-b7cf-a6a2ffe42f79","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouphwyo4a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1fac6b68-d24f-418a-9e4e-0a8d8d78d1d5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupry3cqg","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2762ea2e-2a31-4f24-8e15-e14df51d1d02","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupkbeehm","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2970aada-667c-4316-8a80-f1d80ac45407","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group082331d9","lastDirSyncTime":null,"mail":null,"mailNickname":"group082331d9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2cde37aa-6fd0-42ad-849a-33d06c0da145","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"jltestgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"cdf3513b-d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3325d5d8-e906-4d86-88df-3e4b2f2288a4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb7756095e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb7756095e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"373d42ea-26c9-4c1d-8725-cb085e2f8f2e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupmov6is","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"37727b42-1e63-4fa7-a284-2fc0c924e402","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup24nwhm","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"38682897-e85b-4ab8-af85-96bc1873040b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupdcn4oz","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"39633499-b789-45bf-91a2-5de07b47d659","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupmvxlny","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"39a8174d-bba8-4a91-9b3d-c7c555be901c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupdubv7a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3bf13c9f-50d6-421f-b0b6-f3ad5e6325cd","deletionTimestamp":null,"description":"This is the default group for everyone in the network","dirSyncEnabled":null,"displayName":"All - Company","lastDirSyncTime":null,"mail":"allcompany@AzureSDKTeam.onmicrosoft.com","mailNickname":"allcompany","mailEnabled":true,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":["SPO:SPO_40ce8e27-3250-4920-a3d8-2774e2491374@SPO_54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","SMTP:allcompany@AzureSDKTeam.onmicrosoft.com"],"securityEnabled":false},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3d534694-6e5c-4908-9b76-1fa1c3cc02ea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupytuq32","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"43ec8ef5-5d20-4834-8dce-0aadbf5eb4f3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"qianwengroup123","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4601c36e-c380-4089-abc0-cd90d767011d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupcbvq7j","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"47b36d3d-068d-47f7-9f4b-3560c0a97c49","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup76z2zo","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"49bcc514-ccf7-46b4-b47b-76251803b8fa","deletionTimestamp":null,"description":"I - am a description","dirSyncEnabled":null,"displayName":"testgroupxxj","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxxj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"58cb07a3-9c8c-4061-9506-404283353c9b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group + Company","lastDirSyncTime":null,"mail":"allcompany@AzureSDKTeam.onmicrosoft.com","mailNickname":"allcompany","mailEnabled":true,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":["SMTP:allcompany@AzureSDKTeam.onmicrosoft.com","SPO:SPO_40ce8e27-3250-4920-a3d8-2774e2491374@SPO_54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"],"securityEnabled":false},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3d534694-6e5c-4908-9b76-1fa1c3cc02ea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupytuq32","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"40088efc-eace-40d8-90da-bb3e19c8ec2e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group + 8dc77872","lastDirSyncTime":null,"mail":null,"mailNickname":"group18dc77872","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"43ec8ef5-5d20-4834-8dce-0aadbf5eb4f3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"qianwengroup123","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4601c36e-c380-4089-abc0-cd90d767011d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupcbvq7j","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"477cb3ad-5f46-4d7a-ab8f-93065a50b6f0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupduilb6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"47b36d3d-068d-47f7-9f4b-3560c0a97c49","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup76z2zo","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"49bcc514-ccf7-46b4-b47b-76251803b8fa","deletionTimestamp":null,"description":"I + am a description","dirSyncEnabled":null,"displayName":"testgroupxxj","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxxj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"53602b9d-7829-429c-b9c3-b238b4510a16","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupezldna","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"58cb07a3-9c8c-4061-9506-404283353c9b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group eb044143","lastDirSyncTime":null,"mail":null,"mailNickname":"group2eb044143","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5a197067-7d4e-4862-a692-cb5933646da1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"AAD - DC Administrators","lastDirSyncTime":null,"mail":null,"mailNickname":"AADDCAdministrators","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5a77f1cc-1016-46a7-87b3-144b7ca5ab64","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup72pdqx","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"61837acc-0176-44ed-9882-0a0c2525e23e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupfwf526","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6349a8c5-4d9f-4d2b-99ca-74e52bc1c789","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupl72ohk","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"634f1c4e-eaea-45c5-90e6-cf063aa646e6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupukgpif","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6a40cc25-e8d4-4c60-8aab-b3089ccb3545","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupjyllt6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"77924ecf-9a1c-4eff-ad46-2b0e9db9083e","deletionTimestamp":null,"description":"Test - for weblogic security","dirSyncEnabled":null,"displayName":"wls-security","lastDirSyncTime":null,"mail":null,"mailNickname":"49eabcd6-5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"87b65676-35b6-4af1-b064-46bf90d7e7ff","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupkanoev","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"882ae40b-1a7d-453f-bc2b-48e76ac1d014","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxuaqyh","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"899822d9-0ce3-4d06-be2f-d4e3c690148b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupmxivwq","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8cf0a77e-9d25-4322-979b-dafd2be6dc90","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouplvd2wn","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"91472d43-b8dd-42e0-a339-1b4371062b17","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200811113558193363","lastDirSyncTime":null,"mail":null,"mailNickname":"8be8854d-3bfd-4c85-ab8f-aa241a684bb6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"93b331d4-7f18-467e-baab-9aa6475c52eb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200811093204620696","lastDirSyncTime":null,"mail":null,"mailNickname":"b06a0b8f-2af2-425b-ae77-73c691704282","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9ac7cfa9-a8d9-4757-8fbd-9d0b8f9f6828","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupnspr46","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c13d0bd-2857-40ad-81bd-1b5a84745424","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup5log7z","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c81ad1a-fedf-41f6-a84e-ed901f76ff3f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group - 98e57286","lastDirSyncTime":null,"mail":null,"mailNickname":"group198e57286","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9dee2b0c-515c-4406-bf13-8386e7ecce15","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupf4feom","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a08f6596-50cc-4aeb-baca-2cc3f7f26fc8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxsbwfb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b0d0039d-3d07-4a92-a220-1b9cae6867c5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g2","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b45739f5-461d-4268-993a-778ed6119ddb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupjmtdyp","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b671cd6e-9191-488b-80ae-1b710ddd3d1d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7b778007d","lastDirSyncTime":null,"mail":null,"mailNickname":"group7b778007d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bc487072-e935-4593-9aba-ba2cf839fcdc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup4jgprj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c1fa0f5e-5ab8-4563-b6e4-cdb0827a4a76","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"xxjtestgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"xxjtestgroup","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c617af87-3fee-466c-92af-87ee433d294b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup3o4gwc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c73d203e-725c-4341-b6e9-ad5dc4f30e77","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouphvix7n","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c7659b04-b538-4b02-b088-08e964bbc0d4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupk3vol7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d014e1bc-dc51-4805-b3f7-d401bf302393","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200811093204630924","lastDirSyncTime":null,"mail":null,"mailNickname":"5e9c34e6-30b4-4bb0-a152-817220408487","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d597c0ce-b84b-4311-adff-db15ec1aced1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupiwajnh","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d60449f1-6d9b-42fb-bc14-a2b8e2fc848c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup67buch","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d795f9ea-4595-4bb2-9abb-f4f9606e27b9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupe2chax","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"de584959-99ef-4a20-b099-9e7882606520","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc4e664492","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc4e664492","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"df81d1c5-2d36-4d70-a5ef-e9d70e1ed626","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupg5ciwq","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e661faf9-79de-42cb-9df8-cd8472fc1604","deletionTimestamp":null,"description":"test","dirSyncEnabled":null,"displayName":"xiaojxu-group-1","lastDirSyncTime":null,"mail":null,"mailNickname":"xiaojxu","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ea3b41e2-b558-4b76-92d2-ef4f24b982c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group10914842b","lastDirSyncTime":null,"mail":null,"mailNickname":"group10914842b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eab39e7e-0ed7-46c7-911f-17772c2fa786","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup44gpcj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f0557711-e415-418e-9b24-654af401fb1f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"cli-grpakxq7xcp","lastDirSyncTime":null,"mail":null,"mailNickname":"cli-grpakxq7xcp","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f0bec09f-45a4-4c58-ac5b-cf0516d7bc68","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"AzureSDKTeam","lastDirSyncTime":null,"mail":"AzureSDKTeam@AzureSDKTeam.onmicrosoft.com","mailNickname":"AzureSDKTeam","mailEnabled":true,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":["SMTP:AzureSDKTeam@AzureSDKTeam.onmicrosoft.com"],"securityEnabled":false},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f4468d11-55b1-46b7-857c-ff5a0da635c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"test-group-ro","lastDirSyncTime":null,"mail":null,"mailNickname":"test-group-ro","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f4a9a7a2-2553-42b1-9188-1b18d1f4bf6f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupyjxqzu","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f6a96b85-4eba-4fe1-bade-1958538294fb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupsbivum","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f78a718d-057f-4e56-a08b-164d9adf2256","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupp4qxl6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fea79277-d88a-4262-aa3d-533b142a8351","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupyku24s","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' + DC Administrators","lastDirSyncTime":null,"mail":null,"mailNickname":"AADDCAdministrators","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5a77f1cc-1016-46a7-87b3-144b7ca5ab64","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup72pdqx","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5e84ca4d-b68d-4946-b083-0b348e3edbe7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouplqmdzl","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"61837acc-0176-44ed-9882-0a0c2525e23e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupfwf526","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6349a8c5-4d9f-4d2b-99ca-74e52bc1c789","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupl72ohk","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"634f1c4e-eaea-45c5-90e6-cf063aa646e6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupukgpif","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"68025e62-fd8a-4433-83b0-bac755b83ca4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupekhjui","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"68b6146b-a037-48fd-957c-1db4b54aa3da","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group95933332","lastDirSyncTime":null,"mail":null,"mailNickname":"group95933332","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6a40cc25-e8d4-4c60-8aab-b3089ccb3545","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupjyllt6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6e2b0c2c-7722-44f5-8190-92583d5324bc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupbt5l3t","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"77442f0a-914e-440a-8f10-e12f54442552","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupguvglj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"77924ecf-9a1c-4eff-ad46-2b0e9db9083e","deletionTimestamp":null,"description":"Test + for weblogic security","dirSyncEnabled":null,"displayName":"wls-security","lastDirSyncTime":null,"mail":null,"mailNickname":"49eabcd6-5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7a1eab78-5622-422e-8266-c38450a22caf","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouplim4zt","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"87b65676-35b6-4af1-b064-46bf90d7e7ff","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupkanoev","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"882ae40b-1a7d-453f-bc2b-48e76ac1d014","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxuaqyh","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"899822d9-0ce3-4d06-be2f-d4e3c690148b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupmxivwq","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8b0b28c9-f1a2-41c7-a633-704e47c0f671","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"CAE + users","lastDirSyncTime":null,"mail":null,"mailNickname":"aad30f4e-6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8cf0a77e-9d25-4322-979b-dafd2be6dc90","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouplvd2wn","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"91472d43-b8dd-42e0-a339-1b4371062b17","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200811113558193363","lastDirSyncTime":null,"mail":null,"mailNickname":"8be8854d-3bfd-4c85-ab8f-aa241a684bb6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"924cc005-15c7-4f64-8a4a-998ab16498bb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupb3cgir","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"937632f9-c76c-497a-846c-7cf151e16c17","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup32wmpu","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"93b331d4-7f18-467e-baab-9aa6475c52eb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200811093204620696","lastDirSyncTime":null,"mail":null,"mailNickname":"b06a0b8f-2af2-425b-ae77-73c691704282","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"99ad41b2-5ddf-4064-adcf-513ed1116eec","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupbsqwge","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9ac7cfa9-a8d9-4757-8fbd-9d0b8f9f6828","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupnspr46","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c13d0bd-2857-40ad-81bd-1b5a84745424","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup5log7z","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c81ad1a-fedf-41f6-a84e-ed901f76ff3f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group + 98e57286","lastDirSyncTime":null,"mail":null,"mailNickname":"group198e57286","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9dee2b0c-515c-4406-bf13-8386e7ecce15","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupf4feom","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9ee5a7ab-761e-4881-a807-6b280a2c0807","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupvywc7s","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a08f6596-50cc-4aeb-baca-2cc3f7f26fc8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupxsbwfb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a9cddef6-6479-4b08-a082-bbb49fa96836","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupij33f5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a9ddc75e-c796-4d0b-b2a7-26c6fa1bd7e9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup35iift","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b45739f5-461d-4268-993a-778ed6119ddb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupjmtdyp","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b671cd6e-9191-488b-80ae-1b710ddd3d1d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7b778007d","lastDirSyncTime":null,"mail":null,"mailNickname":"group7b778007d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b7804bfb-9635-4cb4-b805-942653270ed3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group + cfc29369","lastDirSyncTime":null,"mail":null,"mailNickname":"group2cfc29369","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bc487072-e935-4593-9aba-ba2cf839fcdc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup4jgprj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c0cbb512-ae1c-46b5-8135-7fbdc68a20af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupawkjov","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c1fa0f5e-5ab8-4563-b6e4-cdb0827a4a76","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"xxjtestgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"xxjtestgroup","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c617af87-3fee-466c-92af-87ee433d294b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup3o4gwc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c73d203e-725c-4341-b6e9-ad5dc4f30e77","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgrouphvix7n","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c7659b04-b538-4b02-b088-08e964bbc0d4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupk3vol7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d014e1bc-dc51-4805-b3f7-d401bf302393","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"acctesthdi-200811093204630924","lastDirSyncTime":null,"mail":null,"mailNickname":"5e9c34e6-30b4-4bb0-a152-817220408487","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d06ccf2d-d777-4b4a-bd0b-c1f9256c17f5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup7llmz4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d597c0ce-b84b-4311-adff-db15ec1aced1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupiwajnh","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d60449f1-6d9b-42fb-bc14-a2b8e2fc848c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup67buch","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d795f9ea-4595-4bb2-9abb-f4f9606e27b9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupe2chax","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"de584959-99ef-4a20-b099-9e7882606520","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc4e664492","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc4e664492","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"df81d1c5-2d36-4d70-a5ef-e9d70e1ed626","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupg5ciwq","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e01a3d68-8db5-4a38-8d64-7fba69742060","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupj4cqrj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e661faf9-79de-42cb-9df8-cd8472fc1604","deletionTimestamp":null,"description":"test","dirSyncEnabled":null,"displayName":"xiaojxu-group-1","lastDirSyncTime":null,"mail":null,"mailNickname":"xiaojxu","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e687e5fa-8100-49c0-9390-50e2c02d0c12","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupifelve","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ea3b41e2-b558-4b76-92d2-ef4f24b982c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group10914842b","lastDirSyncTime":null,"mail":null,"mailNickname":"group10914842b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eab39e7e-0ed7-46c7-911f-17772c2fa786","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup44gpcj","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eb99b873-458c-49b7-8c47-c8a2179e036a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupfu565h","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f0557711-e415-418e-9b24-654af401fb1f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"cli-grpakxq7xcp","lastDirSyncTime":null,"mail":null,"mailNickname":"cli-grpakxq7xcp","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f0bec09f-45a4-4c58-ac5b-cf0516d7bc68","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"AzureSDKTeam","lastDirSyncTime":null,"mail":"AzureSDKTeam@AzureSDKTeam.onmicrosoft.com","mailNickname":"AzureSDKTeam","mailEnabled":true,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":["SMTP:AzureSDKTeam@AzureSDKTeam.onmicrosoft.com"],"securityEnabled":false},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f2c8e871-dc55-4379-a99d-b3a882ed34ea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupkydnpa","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f4468d11-55b1-46b7-857c-ff5a0da635c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"test-group-ro","lastDirSyncTime":null,"mail":null,"mailNickname":"test-group-ro","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f4a9a7a2-2553-42b1-9188-1b18d1f4bf6f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupyjxqzu","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f6a96b85-4eba-4fe1-bade-1958538294fb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupsbivum","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f78a718d-057f-4e56-a08b-164d9adf2256","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupp4qxl6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fea79277-d88a-4262-aa3d-533b142a8351","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupyku24s","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ffa6ed11-e137-4081-ad6e-77a25ddd685a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group123","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroupfyspay","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '31776' + - '46621' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:40 GMT + - Fri, 30 Oct 2020 02:52:44 GMT duration: - - '2744986' + - '3526825' expires: - '-1' ocp-aad-diagnostics-server-name: - - L9NBRnGEeAQxkyyQ/ByUHcjzlwozd6+Cs0akFLqp8sA= + - H3HB22IRxXel155fX12LL+vB57+gYJv+1w58AVrfekc= ocp-aad-session-key: - - Jgt1x18hV6jWa5XwXjceN_tl94iAANEcTJM5UIof5baBDMIam6swVOsVviiZiPFUeP7FY2PUL9eE3ydSX00TmoOiHFgWByAvdMXvN6hitzmmIEn9pHFRDr3w25Ct36UWB08lnHEOsrGyAiejkmT1geWifGRURRkQf0wUlfxmEVM.Cvi9W9dHihgmNit-xqgtIC9JDAu7SFctNzVmn3ugPCY + - eUpm9eSKByImT7alYvhyYExcZFbcC4PJX1Cu9yQGmQB_4Mb9fEp3fQM7kcxnDX4-C0IESzF3FY4wKWM47UtMZiNxEW7aF8mMG7hVeDOyMSeGKw6Vl8Khkn7WwfmJn70X9ewrtpp9-mOvG6WViXubmaaV0OT1U6x1fbNywsFxIDc.supUOZS2IXC-KSr1WdtSKHlPKpfocGaa3JDB48tQlKY pragma: - no-cache request-id: - - 7688800e-6174-4b4e-bea5-14234da13249 + - 5e846354-a4b6-498d-bd0e-f6e1ab2af50d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2128,12 +2131,12 @@ interactions: ParameterSetName: - --upn-or-object-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/cc380d58-0746-40fd-b4ff-e32a73ff0b34?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/5e6ead1a-543c-47e1-824f-a5ef419d9d46?api-version=1.6 response: body: string: '' @@ -2143,19 +2146,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:40 GMT + - Fri, 30 Oct 2020 02:52:45 GMT duration: - - '3028433' + - '3384970' expires: - '-1' ocp-aad-diagnostics-server-name: - - Zi+2P1A0SwqDKMbSHF8EN9tNzs1wJg1vxFyizsabdlw= + - cAVsKsE66TYakbqGtubIAtWvSCoR9a+ArvTZEZ5t0Yk= ocp-aad-session-key: - - 1LIKzfX3xUojIlWpQjIrvjRo05MvwfgTKif4mZgShAp-FDZSaYTThXAIm5NVvmGwcFTanzYFJ-iiERjeYg_dZYpcmoJNuaZVhMG6E1cblGgKxBFOypl8Hw3O0RMW69-PDG2RG07ybMVg_HUCeL1Cuqsrc2IG0Z6b60Q96l53BPo.HnfOnXAxh-ZtGYOQx0c3XiQdeGseQfAllODGTol_OIY + - 5nbeoe-PIS7bX4E8Meb83LS-dXXEGKLoVtIr-hczu05rfkFp5nTyIPhOSZcabAglF6YA3-VnBXIfXEPmhV_O0mAEzYrpUkSKH09cVs6LA-T_zTGFk000xYFj01hxaaUIe6j-SpHeuht5L_eBQ_nIqcKX_99PmD5971_9E6xgn3Y.EFGJXYKn1aXCJXdKlglw39-uoZUxjQi3O_uo4oRZMkc pragma: - no-cache request-id: - - b6fa18f1-72e1-400e-8310-8b0b0e7c88d1 + - c14a41c5-afbc-4ee9-9158-e9438c939325 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2185,12 +2188,12 @@ interactions: ParameterSetName: - --upn-or-object-id User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/ce8da55c-fef6-4527-b815-847aff78e387?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d1730585-48e1-40a5-b9a3-109a7e390e3f?api-version=1.6 response: body: string: '' @@ -2200,19 +2203,19 @@ interactions: cache-control: - no-cache date: - - Fri, 21 Aug 2020 06:26:41 GMT + - Fri, 30 Oct 2020 02:52:46 GMT duration: - - '3196378' + - '3414053' expires: - '-1' ocp-aad-diagnostics-server-name: - - s8b3SINXiq4yUQ7D+hkzg34bDluxs7CTY+E2hkr8Adc= + - NIhvI+KCdRQtsdqtnk5zDsI0SfISQseYW0KRkw4LY84= ocp-aad-session-key: - - YtMuBZfpgrmTZIgbgdGvdd-4ANs1n_7NH1oHlt2ySqxOeQbqRhOTe5EuNOmE7X7ym9Oa8xZyaP286CTmNct2194hF4lrKepik4zzGLF4dlHEpoyLRp_WW3bWjoeA0XGeAhyhu9uV4YMwXRVy9ErUcLCjCWcuiVvmsJWia2iB0Xg.-1YVmcFd-JHx2vSqCHcr7empBGwyeTD8lpTd3Qd0-hk + - OIWetZ_Q1LsNXGoHbykhkmjUa8BoXn-Tu20J1KS8M1e4uzjtLlUzhkkyCYVrX-hVnnsu4qBTZum-XbEA2EwWiHxrdWJ7CK1Le3JbRVtM_OctncHhl8Ctuw7EbTih8-UWvGZxMqmfz8Xdo_YwE4qKrrb-ehOzd3ooC3J5byx0SAs.dPKSEMiWDhctdvJTDpdrLkR_sj-Z9O2yTixz8zRQMtg pragma: - no-cache request-id: - - 4a742bec-b877-4b9b-a114-b633ad76913c + - bdc0f1ca-5644-40cb-a397-4ee23e3ab162 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2240,8 +2243,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -2261,19 +2264,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:41 GMT + - Fri, 30 Oct 2020 02:52:46 GMT duration: - - '2755767' + - '2295096' expires: - '-1' ocp-aad-diagnostics-server-name: - - JLzOMeRSmD6axXTrAREETHjQsFiczwukGmJuoAZBT4k= + - Drw2XA9KyQgsrpvmmqtwgHiZqOOXvdLCC08yhhod2oI= ocp-aad-session-key: - - ms5ssJWe72zx4aHqez7ih35qghZUW9AzfOOg09DWIeHrVvdcqixAiSnbCNNhpIMxSsERWky9wYhf-QrFvS8neEjLtfDBCzfYL08K9qJj09csTxUq9yHIFBinq8oGzybD0Szbef4alHPjfWLF2Zenv7Uebz5YzorOMAHj_Wx0j3A.N76K8j2D-8RvdX8Ef85iG-co7spFcLMy2N0M-Dlzfes + - seR6JSTpFABYEsiavRz1xObqbFc2kJ69p0dlLx_Niwgqm4WZ4FjWg1Gh_3mh4oIB7By8sIUZO3OSHGaA2dHsZ2KI1Cy5KHlXZYdd4JFrlsD4YR6Ps2b0lujfcWlQRsnQXaZj_25djCsLOBVlYSpXetM4ZbO9WPuBsRTf_RoOyyI.dZ6icmvf4-XhLyRBvPLvJshUHKFv9b3-PPZLv_8To1g pragma: - no-cache request-id: - - 59818d9c-efe0-4618-8afd-fd97a371473d + - 1901ab43-1c5a-4b4f-850d-5b197c4bd9d7 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2301,8 +2304,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.10.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -2322,19 +2325,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Aug 2020 06:26:42 GMT + - Fri, 30 Oct 2020 02:52:47 GMT duration: - - '2225206' + - '2215086' expires: - '-1' ocp-aad-diagnostics-server-name: - - PRGXX9jjf9bQz2WUo+1Gib56c0IpEiXlqye6PC24stc= + - 4pe4P2HysXWVqJ43WA2/sfBmoDTl2Ogd/i0NUIE7FDs= ocp-aad-session-key: - - R7-z6GMv3RfMkD2BJK3n6-pFxzGh6GePncpmfpM4hKdHySsdixgntfw9bkMDzkkPNU5Ls6tBVJxqvK0ToF1eavOHKvhNmxRU3F8bWQJrKdMp4EUiCm_NgTuc1nvUiD26SgCnFBw6ZO_DrEcS1_P_eq8xlS4S2oOkv57loBLq2oE.kyEG57C3hOoXUqtP_j53j7HTDNhBDRWfs7ApRxbt3NA + - _0KVu4SYa-3jxfm870lNVWKf8vqsvGWazr04lnf21tu8LVwmxAoU9eSJZEWHk2EecnLN1gryhXz0E9dDSzOg--vkqwUCGoHsyQH3n_rDvmugwzeQf5sSVUNV4wt7qCPtxlvKMF4o-voTHBodB6sIRQTHm-IQ1TRlwubXDzAF8Rc.y_sSCKi_Byr1oyelsHxulqk3P3_Rmw8abd_P0hzfKTo pragma: - no-cache request-id: - - 3018a8c6-8b64-4b35-9710-e62c7a26998f + - 36748dcd-3aa7-4f69-803f-1266e5d3fe93 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_graph.py b/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_graph.py index 3bac45ec544..4240288f97c 100644 --- a/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_graph.py +++ b/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_graph.py @@ -335,8 +335,8 @@ def test_graph_group_scenario(self): domain = username.split('@', 1)[1] self.kwargs = { - 'user1': 'deleteme1', - 'user2': 'deleteme2', + 'user1': self.create_random_name(prefix='deleteme1', length=15), + 'user2': self.create_random_name(prefix='deleteme2', length=15), 'domain': domain, 'new_mail_nick_name': 'deleteme11', 'group': 'deleteme_g', diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/loganalytics.json b/src/azure-cli/azure/cli/command_modules/security/tests/latest/loganalytics.json new file mode 100644 index 00000000000..c35e82a539b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/loganalytics.json @@ -0,0 +1,5 @@ +{ + "sku": { + "name": "pergb2018" + } +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_adaptive_application_controls.yaml b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_adaptive_application_controls.yaml index 6881da6b886..b1b8d278b8a 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_adaptive_application_controls.yaml +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_adaptive_application_controls.yaml @@ -7,28 +7,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - security adaptive_application_controls list + - security adaptive-application-controls list Connection: - keep-alive User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/applicationWhitelistings?api-version=2020-01-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/AMIT-VA","name":"AMIT-VA","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/erelh-dsc/providers/microsoft.compute/virtualmachines/erelh-14010","recommendationAction":"Recommended","recommendedDates":["2019-09-03T00:00:00Z"],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"eastus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP1","name":"GROUP1","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/talk-va/providers/microsoft.compute/virtualmachines/tal-win-vm-jit","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"Audit","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP2","name":"GROUP2","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amit-va/providers/microsoft.compute/virtualmachines/ream-test","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eitanrg/providers/microsoft.compute/virtualmachines/eitanvm2","recommendationAction":"Recommended","recommendedDates":["2019-11-24T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181211","recommendationAction":"Recommended","recommendedDates":["2020-01-22T00:00:00Z","2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181210","recommendationAction":"Recommended","recommendedDates":["2020-01-22T00:00:00Z","2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181237","recommendationAction":"Recommended","recommendedDates":["2020-01-22T00:00:00Z","2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181245","recommendationAction":"Recommended","recommendedDates":["2020-01-22T00:00:00Z","2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181239","recommendationAction":"Recommended","recommendedDates":["2020-01-22T00:00:00Z","2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18129","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18121","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP3","name":"GROUP3","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18124","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181222","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181241","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18126","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181244","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181214","recommendationAction":"Recommended","recommendedDates":["2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181230","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181229","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181236","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18127","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181238","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181213","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181233","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181223","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181242","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP4TEST","name":"GROUP4TEST","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/erelh-stable/providers/microsoft.compute/virtualmachines/erelh-16091","recommendationAction":"Recommended","recommendedDates":["2019-12-02T00:00:00Z","2019-12-03T00:00:00Z","2019-12-04T00:00:00Z","2019-12-05T00:00:00Z","2019-12-06T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myresourcegroup/providers/microsoft.compute/virtualmachines/myvmweb","recommendationAction":"Recommended","recommendedDates":["2019-12-02T00:00:00Z","2019-12-03T00:00:00Z","2019-12-04T00:00:00Z","2019-12-05T00:00:00Z","2019-12-06T00:00:00Z"],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP5","name":"GROUP5","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18123","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-ady/providers/microsoft.compute/virtualmachines/vmmultinicprod","recommendationAction":"Recommended","recommendedDates":["2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181243","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181247","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181228","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181227","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181246","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181248","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181225","recommendationAction":"Recommended","recommendedDates":["2020-05-01T00:00:00Z","2020-05-02T00:00:00Z","2020-05-03T00:00:00Z","2020-05-04T00:00:00Z","2020-05-05T00:00:00Z","2020-05-06T00:00:00Z","2020-05-07T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP6","name":"GROUP6","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191212","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19121","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19120","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191213","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191214","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191220","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191215","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191216","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191231","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221224","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191244","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221219","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221217","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221223","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221211","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221213","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221212","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221216","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-22126","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-22122","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-22125","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-22123","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221225","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-22124","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221229","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221227","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-22121","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/msi-221215","recommendationAction":"Recommended","recommendedDates":["2020-04-24T00:00:00Z","2020-04-25T00:00:00Z","2020-04-26T00:00:00Z","2020-04-27T00:00:00Z","2020-04-28T00:00:00Z","2020-04-29T00:00:00Z","2020-04-30T00:00:00Z"],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"Audit","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP7","name":"GROUP7","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aviresourcegroup/providers/microsoft.compute/virtualmachines/avivm1","recommendationAction":"Recommended","recommendedDates":["2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avi/providers/microsoft.compute/virtualmachines/avivm","recommendationAction":"Recommended","recommendedDates":["2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ron-gissin-test-resource-group/providers/microsoft.compute/virtualmachines/ron-gissin-test-vm","recommendationAction":"Recommended","recommendedDates":["2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"NotConfigured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP8","name":"GROUP8","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191219","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191223","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191221","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191211","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19122","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191217","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191218","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191210","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191222","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19123","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191243","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19124","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19125","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191245","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191225","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191234","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191240","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191239","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191236","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191226","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191229","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19129","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191230","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191246","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191232","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191233","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191237","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191241","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191238","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191228","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191224","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191242","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19128","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191235","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-191227","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glteswin/providers/microsoft.compute/virtualmachines/msi-19127","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amaviram-pptest/providers/microsoft.compute/virtualmachines/simplewinvm","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/gl2612","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amaviram-pptest/providers/microsoft.compute/virtualmachines/amitq1005","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amit-va/providers/microsoft.compute/virtualmachines/amitq1005-2","recommendationAction":"Recommended","recommendedDates":["2020-01-23T00:00:00Z","2020-01-24T00:00:00Z","2020-01-25T00:00:00Z","2020-01-26T00:00:00Z","2020-01-27T00:00:00Z","2020-01-28T00:00:00Z","2020-01-29T00:00:00Z"],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/MATAN","name":"MATAN","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/erelh-dsc/providers/microsoft.compute/virtualmachines/erelh-14011","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Supported"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/v-arrikl-scheduledapps/providers/microsoft.compute/virtualmachines/v-arrikl-14060","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/NEWDEMOGROUP","name":"NEWDEMOGROUP","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/erelh-stable/providers/microsoft.compute/virtualmachines/erelh-16090","recommendationAction":"Recommended","recommendedDates":["2019-12-02T00:00:00Z","2019-12-03T00:00:00Z","2019-12-04T00:00:00Z","2019-12-05T00:00:00Z","2019-12-06T00:00:00Z"],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/REVIEWGROUP1","name":"REVIEWGROUP1","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"NotRecommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181224","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181231","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181226","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18128","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181212","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181220","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181215","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181221","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18125","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-18122","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"},{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-gltest/providers/microsoft.compute/virtualmachines/msi-181232","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/TESTAWGROUP","name":"TESTAWGROUP","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/TESTGROUP","name":"TESTGROUP","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/TESTMATAN2","name":"TESTMATAN2","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/v-arrikl-scheduledapps/providers/microsoft.compute/virtualmachines/v-arrikl-14061","recommendationAction":"Add","recommendedDates":["2019-12-02T00:00:00Z","2019-12-03T00:00:00Z","2019-12-04T00:00:00Z","2019-12-05T00:00:00Z","2019-12-06T00:00:00Z"],"enforcementSupport":"Supported"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"centralus","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/westeurope/applicationWhitelistings/BENJITGROUP13","name":"BENJITGROUP13","type":"Microsoft.Security/applicationWhitelistings","location":"westeurope","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bengr-jit-test/providers/microsoft.compute/virtualmachines/bengr-jit-test3","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"NotSupported"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glstandard_a1/providers/microsoft.compute/virtualmachines/testglvm2512","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030110","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030125","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030114","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03017","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030121","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"westeurope","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/westeurope/applicationWhitelistings/GROUP1","name":"GROUP1","type":"Microsoft.Security/applicationWhitelistings","location":"westeurope","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/nic-no-pip/providers/microsoft.compute/virtualmachines/nic-no-pip-vm","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[{"issue":"ExecutableViolationsAudited","numberOfVms":1}],"location":"westeurope","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/westeurope/applicationWhitelistings/GROUP2","name":"GROUP2","type":"Microsoft.Security/applicationWhitelistings","location":"westeurope","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/bengr-jit-test/providers/microsoft.compute/virtualmachines/bengr-jit-test1","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"NotSupported"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030118","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03019","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030117","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03011","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03016","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030122","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03012","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03010","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030119","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03015","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030120","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030115","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030113","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030126","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030112","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030116","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03018","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030128","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030124","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03014","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030127","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030129","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-03013","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"},{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030123","recommendationAction":"Add","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[],"location":"westeurope","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"None","script":"None"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/westeurope/applicationWhitelistings/GROUP3","name":"GROUP3","type":"Microsoft.Security/applicationWhitelistings","location":"westeurope","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"Configured","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/erel/providers/microsoft.compute/virtualmachines/erellinux1","recommendationAction":"Recommended","recommendedDates":["2019-12-03T00:00:00Z","2019-12-04T00:00:00Z","2019-12-05T00:00:00Z","2019-12-06T00:00:00Z","2019-12-07T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"Configured","issues":[{"issue":"ExecutableViolationsAudited","numberOfVms":1}],"location":"westeurope","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/westeurope/applicationWhitelistings/GROUP5","name":"GROUP5","type":"Microsoft.Security/applicationWhitelistings","location":"westeurope","properties":{"recommendationStatus":"Recommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/msi-glwin5/providers/microsoft.compute/virtualmachines/msi-030111","recommendationAction":"Recommended","recommendedDates":["2020-07-02T00:00:00Z","2020-07-03T00:00:00Z","2020-07-04T00:00:00Z","2020-07-05T00:00:00Z","2020-07-06T00:00:00Z","2020-07-07T00:00:00Z","2020-07-08T00:00:00Z"],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"NotConfigured","issues":[],"location":"westeurope","sourceSystem":"Azure_AppLocker","protectionMode":{"exe":"Audit","msi":"Audit","script":"None"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/REVIEWGROUP2","name":"REVIEWGROUP2","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"NotRecommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zuh/providers/microsoft.compute/virtualmachines/zuhvm","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"}],"pathRecommendations":[],"configurationStatus":"NotConfigured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}}]}' headers: cache-control: - no-cache content-length: - - '75707' + - '789' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Jul 2020 17:08:01 GMT + - Wed, 28 Oct 2020 14:06:48 GMT expires: - '-1' pragma: @@ -55,92 +55,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - security adaptive_application_controls show + - security adaptive-application-controls show Connection: - keep-alive ParameterSetName: - --group-name User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP1?api-version=2020-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/REVIEWGROUP2?api-version=2020-01-01 response: body: - string: "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/GROUP1\"\ - ,\"name\":\"GROUP1\",\"type\":\"Microsoft.Security/applicationWhitelistings\"\ - ,\"location\":\"centralus\",\"properties\":{\"recommendationStatus\":\"Recommended\"\ - ,\"enforcementMode\":\"Audit\",\"vmRecommendations\":[{\"configurationStatus\"\ - :\"Configured\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/talk-va/providers/microsoft.compute/virtualmachines/tal-win-vm-jit\"\ - ,\"recommendationAction\":\"Recommended\",\"recommendedDates\":[],\"enforcementSupport\"\ - :\"Supported\"}],\"pathRecommendations\":[{\"path\":\"C:\\\\bla\\\\bl2a.exe\"\ - ,\"type\":\"File\",\"common\":true,\"action\":\"Recommended\",\"usernames\"\ - :[{\"username\":\"Everyone\",\"recommendationAction\":\"Recommended\"}],\"\ - userSids\":[\"S-1-1-0\"],\"fileType\":\"exe\",\"configurationStatus\":\"Configured\"\ - },{\"path\":\"C:\\\\bla\\\\bla.exe\",\"type\":\"File\",\"common\":true,\"\ - action\":\"Add\",\"usernames\":[{\"username\":\"Everyone\",\"recommendationAction\"\ - :\"Recommended\"}],\"userSids\":[\"S-1-1-0\"],\"fileType\":\"exe\",\"configurationStatus\"\ - :\"Configured\"},{\"path\":\"[exe] O=MICROSOFT CORPORATION, L=REDMOND, S=WASHINGTON,\ - \ C=US\\\\*\\\\*\\\\0.0.0.0\",\"type\":\"PublisherSignature\",\"publisherInfo\"\ - :{\"publisherName\":\"O=MICROSOFT CORPORATION, L=REDMOND, S=WASHINGTON, C=US\"\ - ,\"productName\":\"*\",\"binaryName\":\"*\",\"version\":\"0.0.0.0\"},\"common\"\ - :true,\"action\":\"Recommended\",\"usernames\":[{\"username\":\"Everyone\"\ - ,\"recommendationAction\":\"Recommended\"}],\"userSids\":[\"S-1-1-0\"],\"\ - fileType\":\"exe\",\"configurationStatus\":\"Configured\"},{\"path\":\"[exe]\ - \ CN=MICROSOFT AZURE DEPENDENCY CODE SIGN\\\\MICROSOFT\xAE COREXT\\\\*\\\\\ - 0.0.0.0\",\"type\":\"ProductSignature\",\"publisherInfo\":{\"publisherName\"\ - :\"CN=MICROSOFT AZURE DEPENDENCY CODE SIGN\",\"productName\":\"MICROSOFT\xAE\ - \ COREXT\",\"binaryName\":\"*\",\"version\":\"0.0.0.0\"},\"common\":true,\"\ - action\":\"Recommended\",\"usernames\":[{\"username\":\"NT AUTHORITY\\\\SYSTEM\"\ - ,\"recommendationAction\":\"Recommended\"}],\"userSids\":[\"S-1-1-0\"],\"\ - fileType\":\"exe\",\"configurationStatus\":\"Configured\"},{\"path\":\"[exe]\ - \ O=RAPID7 LLC, L=BOSTON, S=MASSACHUSETTS, C=US\\\\*\\\\*\\\\0.0.0.0\",\"\ - type\":\"PublisherSignature\",\"publisherInfo\":{\"publisherName\":\"O=RAPID7\ - \ LLC, L=BOSTON, S=MASSACHUSETTS, C=US\",\"productName\":\"*\",\"binaryName\"\ - :\"*\",\"version\":\"0.0.0.0\"},\"common\":true,\"action\":\"Recommended\"\ - ,\"usernames\":[{\"username\":\"NT AUTHORITY\\\\SYSTEM\",\"recommendationAction\"\ - :\"Recommended\"}],\"userSids\":[\"S-1-1-0\"],\"fileType\":\"exe\",\"configurationStatus\"\ - :\"Configured\"},{\"path\":\"[exe] O=GOOGLE LLC, L=MOUNTAIN VIEW, S=CA, C=US\\\ - \\*\\\\*\\\\0.0.0.0\",\"type\":\"PublisherSignature\",\"publisherInfo\":{\"\ - publisherName\":\"O=GOOGLE LLC, L=MOUNTAIN VIEW, S=CA, C=US\",\"productName\"\ - :\"*\",\"binaryName\":\"*\",\"version\":\"0.0.0.0\"},\"common\":true,\"action\"\ - :\"Recommended\",\"usernames\":[{\"username\":\"NT AUTHORITY\\\\SYSTEM\",\"\ - recommendationAction\":\"Remove\"},{\"username\":\"Everyone\",\"recommendationAction\"\ - :\"Recommended\"}],\"userSids\":[\"S-1-1-0\"],\"fileType\":\"exe\",\"configurationStatus\"\ - :\"Configured\"},{\"path\":\"[msi] O=GOOGLE LLC, L=MOUNTAIN VIEW, S=CA, C=US\\\ - \\*\\\\*\\\\0.0.0.0\",\"type\":\"PublisherSignature\",\"publisherInfo\":{\"\ - publisherName\":\"O=GOOGLE LLC, L=MOUNTAIN VIEW, S=CA, C=US\",\"productName\"\ - :\"*\",\"binaryName\":\"*\",\"version\":\"0.0.0.0\"},\"common\":true,\"action\"\ - :\"Recommended\",\"usernames\":[{\"username\":\"NT AUTHORITY\\\\SYSTEM\",\"\ - recommendationAction\":\"Remove\"},{\"username\":\"Everyone\",\"recommendationAction\"\ - :\"Recommended\"}],\"userSids\":[\"S-1-1-0\"],\"fileType\":\"msi\",\"configurationStatus\"\ - :\"Configured\"},{\"path\":\"[exe] O=GOOGLE INC, L=MOUNTAIN VIEW, S=CALIFORNIA,\ - \ C=US\\\\GOOGLE UPDATE\\\\*\\\\0.0.0.0\",\"type\":\"ProductSignature\",\"\ - publisherInfo\":{\"publisherName\":\"O=GOOGLE INC, L=MOUNTAIN VIEW, S=CALIFORNIA,\ - \ C=US\",\"productName\":\"GOOGLE UPDATE\",\"binaryName\":\"*\",\"version\"\ - :\"0.0.0.0\"},\"common\":true,\"action\":\"Recommended\",\"usernames\":[{\"\ - username\":\"NT AUTHORITY\\\\SYSTEM\",\"recommendationAction\":\"Recommended\"\ - }],\"userSids\":[\"S-1-1-0\"],\"fileType\":\"exe\",\"configurationStatus\"\ - :\"Configured\"}],\"configurationStatus\":\"Configured\",\"issues\":[],\"\ - location\":\"centralus\",\"sourceSystem\":\"Azure_AppLocker\",\"protectionMode\"\ - :{\"exe\":\"Audit\",\"msi\":\"Audit\",\"script\":\"None\"}}}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/applicationWhitelistings/REVIEWGROUP2","name":"REVIEWGROUP2","type":"Microsoft.Security/applicationWhitelistings","location":"centralus","properties":{"recommendationStatus":"NotRecommended","enforcementMode":"Audit","vmRecommendations":[{"configurationStatus":"NoStatus","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zuh/providers/microsoft.compute/virtualmachines/zuhvm","recommendationAction":"Recommended","recommendedDates":[],"enforcementSupport":"Unknown"}],"pathRecommendations":[{"path":"/bin/bash","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/sbin/lvmetad","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/sbin/atd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd-udevd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/bin/python3.6","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/omsconfig/bin/omsconsistencyinvoker","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/sbin/rsyslogd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/bin/python2.7","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/omi/bin/omiagent","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/lib/linux-azure-tools-5.0.0-1036/hv_kvp_daemon","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/omi/bin/omiserver","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/bin/sleep","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/bin/apt-get","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd-networkd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/omsagent/ruby/bin/ruby","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/lib/accountsservice/accounts-daemon","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/lib/policykit-1/polkitd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd-logind","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/bin/dash","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/auoms/bin/auomscollect","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/bin/sudo","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd-resolved","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/omi/bin/omiengine","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/sbin/cron","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/auoms/bin/auoms","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/bin/dbus-daemon","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/dsc/bin/dsc_host","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/bin/lxcfs","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/sbin/agetty","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd-journald","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/sbin/sshd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/var/lib/waagent/microsoft.azure.networkwatcher.networkwatcheragentlinux-1.4.1421.1/networkwatcheragent/networkwatcheragent","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/lib/systemd/systemd-timesyncd","type":"File","common":false,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/omsagent/plugin/omsbaseline","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/omsagent/plugin/npmd_agent","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/auoms/bin/auomsctl","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/microsoft/dependency-agent/bin/microsoft-dependency-agent","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/opt/omi/bin/omicli","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/sbin/auditd","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/sbin/audispd","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"},{"path":"/usr/local/qualys/cloud-agent/bin/qualys-cloud-agent","type":"File","common":true,"action":"Recommended","usernames":[{"username":"Everyone","recommendationAction":"Recommended"}],"userSids":["S-1-1-0"],"fileType":"executable","configurationStatus":"NotConfigured"}],"configurationStatus":"NotConfigured","issues":[],"location":"centralus","sourceSystem":"Azure_AuditD","protectionMode":{"executable":"Audit"}}}' headers: cache-control: - no-cache content-length: - - '4056' + - '11335' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Jul 2020 17:08:02 GMT + - Wed, 28 Oct 2020 14:06:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_contacts.yaml b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_contacts.yaml index 35ad3980e00..d4181f26e2f 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_contacts.yaml +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_contacts.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"properties": {"email": "john@contoso.com", "phone": "", "alertNotifications": - "", "alertsToAdmins": ""}}' + "off", "alertsToAdmins": "off"}}' headers: Accept: - application/json @@ -12,36 +12,39 @@ interactions: Connection: - keep-alive Content-Length: - - '106' + - '112' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n --email + - -n --email --alert-notifications --alerts-admins User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1?api-version=2017-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1","name":"default1","type":"Microsoft.Security/securityContacts","properties":{"email":"john@contoso.com","phone":"","alertNotifications":"Off","alertsToAdmins":"Off"}}' + string: '{"properties":{"alertNotifications":"Off","alertsToAdmins":"Off","email":"john@contoso.com","phone":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContact/default1","name":"default1","type":"Microsoft.Security/securityContact","etag":"\"4f00fcc1-0000-0d00-0000-5f998e680000\"","location":"West + Europe"}' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache content-length: - - '281' + - '354' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:19 GMT + - Wed, 28 Oct 2020 15:29:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -67,30 +70,33 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts?api-version=2017-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1","name":"default1","type":"Microsoft.Security/securityContacts","properties":{"email":"john@contoso.com","phone":"","alertNotifications":"Off","alertsToAdmins":"Off"}}]}' + string: '{"value":[{"properties":{"alertNotifications":"Off","alertsToAdmins":"Off","email":"john@contoso.com","phone":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContact/default1","name":"default1","type":"Microsoft.Security/securityContact","etag":"\"4f00fcc1-0000-0d00-0000-5f998e680000\"","location":"West + Europe"}]}' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache content-length: - - '293' + - '366' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:20 GMT + - Wed, 28 Oct 2020 15:29:46 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -118,30 +124,33 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1?api-version=2017-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1","name":"default1","type":"Microsoft.Security/securityContacts","properties":{"email":"john@contoso.com","phone":"","alertNotifications":"Off","alertsToAdmins":"Off"}}' + string: '{"properties":{"alertNotifications":"Off","alertsToAdmins":"Off","email":"john@contoso.com","phone":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContact/default1","name":"default1","type":"Microsoft.Security/securityContact","etag":"\"4f00fcc1-0000-0d00-0000-5f998e680000\"","location":"West + Europe"}' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache content-length: - - '281' + - '354' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:21 GMT + - Wed, 28 Oct 2020 15:29:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -157,7 +166,7 @@ interactions: message: OK - request: body: '{"properties": {"email": "lisa@contoso.com", "phone": "", "alertNotifications": - "", "alertsToAdmins": ""}}' + "off", "alertsToAdmins": "off"}}' headers: Accept: - application/json @@ -168,36 +177,39 @@ interactions: Connection: - keep-alive Content-Length: - - '106' + - '112' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n --email + - -n --email --alert-notifications --alerts-admins User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1?api-version=2017-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1","name":"default1","type":"Microsoft.Security/securityContacts","properties":{"email":"lisa@contoso.com","phone":"","alertNotifications":"Off","alertsToAdmins":"Off"}}' + string: '{"properties":{"alertNotifications":"Off","alertsToAdmins":"Off","email":"lisa@contoso.com","phone":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContact/default1","name":"default1","type":"Microsoft.Security/securityContact","etag":"\"4f005bc2-0000-0d00-0000-5f998e6d0000\"","location":"West + Europe"}' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache content-length: - - '281' + - '354' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:23 GMT + - Wed, 28 Oct 2020 15:29:49 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -207,7 +219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '249' + - '248' status: code: 200 message: OK @@ -225,30 +237,33 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1?api-version=2017-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContacts/default1","name":"default1","type":"Microsoft.Security/securityContacts","properties":{"email":"lisa@contoso.com","phone":"","alertNotifications":"Off","alertsToAdmins":"Off"}}' + string: '{"properties":{"alertNotifications":"Off","alertsToAdmins":"Off","email":"lisa@contoso.com","phone":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/securityContact/default1","name":"default1","type":"Microsoft.Security/securityContact","etag":"\"4f005bc2-0000-0d00-0000-5f998e6d0000\"","location":"West + Europe"}' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache content-length: - - '281' + - '354' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:25 GMT + - Wed, 28 Oct 2020 15:29:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -278,8 +293,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: DELETE @@ -288,22 +303,24 @@ interactions: body: string: '' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache date: - - Wed, 17 Jun 2020 09:45:26 GMT + - Wed, 28 Oct 2020 15:29:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 204 message: No Content @@ -319,8 +336,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET @@ -329,6 +346,8 @@ interactions: body: string: '{"value":[]}' headers: + api-supported-versions: + - 2017-08-01-preview cache-control: - no-cache content-length: @@ -336,13 +355,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:26 GMT + - Wed, 28 Oct 2020 15:29:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -352,7 +371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '749' + - '748' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml index 0e0cea20f9b..1c707a69078 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml @@ -7,51 +7,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - security iot-solution list + - iot hub create Connection: - keep-alive ParameterSetName: - - --resource-group + - -n -g User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East - US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"userDefinedResources":{"query":"where - type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"ba3e71a7-6385-4944-9f01-d611121199bb\" - and resourceGroup in~ (\"AzureCLI\")) | project id, name, type","querySubscriptions":["ba3e71a7-6385-4944-9f01-d611121199bb"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service - prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent - sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd - process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating - system (OS) baseline validation failure","status":"Enabled"},{"recommendationType":"IoT_EdgeHubMemOptimize","name":"IoT - Edge Hub memory can be optimized","status":"Enabled"},{"recommendationType":"IoT_EdgeLoggingOptions","name":"No - logging configured for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_InconsistentModuleSettings","name":"SecurityGroup - has inconsistent module settings","status":"Enabled"},{"recommendationType":"IoT_InstallAgent","name":"Install - the Azure IoT Security agent","status":"Enabled"},{"recommendationType":"IoT_IPFilter_DenyAll","name":"Default - IP filter policy should be deny","status":"Enabled"},{"recommendationType":"IoT_IPFilter_PermissiveRule","name":"IP - filter rule includes a large IP range","status":"Enabled"},{"recommendationType":"IoT_OpenPorts","name":"Device - has open ports","status":"Enabled"},{"recommendationType":"IoT_PermissiveFirewallPolicy","name":"Permissive - firewall policy in one of the chains","status":"Enabled"},{"recommendationType":"IoT_PermissiveInputFirewallRules","name":"Permissive - firewall rule in the input chain","status":"Enabled"},{"recommendationType":"IoT_PermissiveOutputFirewallRules","name":"Permissive - firewall rule in the output chain","status":"Enabled"},{"recommendationType":"IoT_PrivilegedDockerOptions","name":"High - level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended - Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same - authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS - cipher suite upgrade needed","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-28T13:52:52Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3228' + - '471' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:02 GMT + - Wed, 28 Oct 2020 13:52:57 GMT expires: - '-1' pragma: @@ -62,67 +41,98 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - '' - - '' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '749' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"eventHubEndpoints": {"events": {"retentionTimeInDays": + 1, "partitionCount": 4}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": + "PT1H", "connectionString": "", "containerName": ""}}, "messagingEndpoints": + {"fileNotifications": {"ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": + false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", + "feedback": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": + 10}}}, "sku": {"name": "S1", "capacity": 1}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - security iot-solution show + - iot hub create Connection: - keep-alive + Content-Length: + - '570' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - --solution-name --resource-group + - -n -g User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmNDRhNzMtMDMwNy00ZjVkLTlmMGMtZGFjZTA1ZjY1NTQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 13:53:08 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-resource-requests: + - '4999' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmNDRhNzMtMDMwNy00ZjVkLTlmMGMtZGFjZTA1ZjY1NTQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East - US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"userDefinedResources":{"query":"where - type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"ba3e71a7-6385-4944-9f01-d611121199bb\" - and resourceGroup in~ (\"AzureCLI\")) | project id, name, type","querySubscriptions":["ba3e71a7-6385-4944-9f01-d611121199bb"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service - prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent - sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd - process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating - system (OS) baseline validation failure","status":"Enabled"},{"recommendationType":"IoT_EdgeHubMemOptimize","name":"IoT - Edge Hub memory can be optimized","status":"Enabled"},{"recommendationType":"IoT_EdgeLoggingOptions","name":"No - logging configured for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_InconsistentModuleSettings","name":"SecurityGroup - has inconsistent module settings","status":"Enabled"},{"recommendationType":"IoT_InstallAgent","name":"Install - the Azure IoT Security agent","status":"Enabled"},{"recommendationType":"IoT_IPFilter_DenyAll","name":"Default - IP filter policy should be deny","status":"Enabled"},{"recommendationType":"IoT_IPFilter_PermissiveRule","name":"IP - filter rule includes a large IP range","status":"Enabled"},{"recommendationType":"IoT_OpenPorts","name":"Device - has open ports","status":"Enabled"},{"recommendationType":"IoT_PermissiveFirewallPolicy","name":"Permissive - firewall policy in one of the chains","status":"Enabled"},{"recommendationType":"IoT_PermissiveInputFirewallRules","name":"Permissive - firewall rule in the input chain","status":"Enabled"},{"recommendationType":"IoT_PermissiveOutputFirewallRules","name":"Permissive - firewall rule in the output chain","status":"Enabled"},{"recommendationType":"IoT_PrivilegedDockerOptions","name":"High - level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended - Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same - authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS - cipher suite upgrade needed","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '3216' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:04 GMT + - Wed, 28 Oct 2020 13:53:40 GMT expires: - '-1' pragma: @@ -137,8 +147,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '749' status: code: 200 message: OK @@ -150,30 +158,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - security iot-solution delete + - iot hub create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --solution-name --resource-group + - -n -g User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmNDRhNzMtMDMwNy00ZjVkLTlmMGMtZGFjZTA1ZjY1NTQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: - string: '' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '0' + - '20' + content-type: + - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:10 GMT + - Wed, 28 Oct 2020 13:54:09 GMT expires: - '-1' pragma: @@ -182,10 +188,12 @@ interactions: - 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: - - '249' status: code: 200 message: OK @@ -197,30 +205,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - security iot-solution list + - iot hub create Connection: - keep-alive ParameterSetName: - - --resource-group + - -n -g User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 - accept-language: - - en-US + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmNDRhNzMtMDMwNy00ZjVkLTlmMGMtZGFjZTA1ZjY1NTQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: - string: '{"value":[]}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '12' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:11 GMT + - Wed, 28 Oct 2020 13:54:41 GMT expires: - '-1' pragma: @@ -235,8 +241,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '749' status: code: 200 message: OK @@ -248,70 +252,205 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - security iot-solution list + - iot hub create Connection: - keep-alive ParameterSetName: - - --resource-group + - -n -g + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmNDRhNzMtMDMwNy00ZjVkLTlmMGMtZGFjZTA1ZjY1NTQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 13:55:11 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAABB/aHXY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"azurecli-hub000002.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"azurecli-hub000002","endpoint":"sb://iothub-ns-azurecli-h-5568360-e10b3d029d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + headers: + cache-control: + - no-cache + content-length: + - '1700' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 13:55:12 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US 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/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"}]}' + 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/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/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/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/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/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/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/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/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/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"}]}}]}' headers: cache-control: - no-cache content-length: - - '7129' + - '25098' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:12 GMT + - Wed, 28 Oct 2020 13:55:14 GMT expires: - '-1' pragma: @@ -327,7 +466,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "properties": {"displayName": "Solution Default", - "status": "Enabled", "iotHubs": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/AzureCLI/providers/Microsoft.Devices/IotHubs/azurecli-hub"], + "status": "Enabled", "iotHubs": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"], "unmaskedIpLoggingStatus": "Disabled"}}' headers: Accept: @@ -339,24 +478,24 @@ interactions: Connection: - keep-alive Content-Length: - - '274' + - '353' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --solution-name --resource-group --iot-hubs --display-name --location User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East - US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"userDefinedResources":{"query":"where - type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"ba3e71a7-6385-4944-9f01-d611121199bb\" - and resourceGroup in~ (\"AzureCLI\")) | project id, name, type","querySubscriptions":["ba3e71a7-6385-4944-9f01-d611121199bb"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East + US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"userDefinedResources":{"query":"where + type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\" + and resourceGroup in~ (\"clitest.rg000001\")) | project id, name, type","querySubscriptions":["0b1f6471-1bf0-4dda-aec3-cb9272f09590"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating @@ -374,16 +513,17 @@ interactions: level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS - cipher suite upgrade needed","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}' + cipher suite upgrade needed","status":"Enabled"},{"recommendationType":"IoT_EOL_OSversion","name":"Operating + System (OS) on this device should be updated from current end-of-life version","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}' headers: cache-control: - no-cache content-length: - - '3216' + - '3667' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:17 GMT + - Wed, 28 Oct 2020 13:55:23 GMT expires: - '-1' pragma: @@ -413,18 +553,18 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East - US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"userDefinedResources":{"query":"where - type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"ba3e71a7-6385-4944-9f01-d611121199bb\" - and resourceGroup in~ (\"AzureCLI\")) | project id, name, type","querySubscriptions":["ba3e71a7-6385-4944-9f01-d611121199bb"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East + US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"userDefinedResources":{"query":"where + type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\" + and resourceGroup in~ (\"clitest.rg000001\")) | project id, name, type","querySubscriptions":["0b1f6471-1bf0-4dda-aec3-cb9272f09590"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating @@ -442,16 +582,17 @@ interactions: level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS - cipher suite upgrade needed","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}]}' + cipher suite upgrade needed","status":"Enabled"},{"recommendationType":"IoT_EOL_OSversion","name":"Operating + System (OS) on this device should be updated from current end-of-life version","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '3228' + - '3679' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:18 GMT + - Wed, 28 Oct 2020 13:55:25 GMT expires: - '-1' pragma: @@ -488,18 +629,18 @@ interactions: ParameterSetName: - --solution-name --resource-group --iot-hubs --display-name User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East - US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"userDefinedResources":{"query":"where - type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"ba3e71a7-6385-4944-9f01-d611121199bb\" - and resourceGroup in~ (\"AzureCLI\")) | project id, name, type","querySubscriptions":["ba3e71a7-6385-4944-9f01-d611121199bb"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East + US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"userDefinedResources":{"query":"where + type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\" + and resourceGroup in~ (\"clitest.rg000001\")) | project id, name, type","querySubscriptions":["0b1f6471-1bf0-4dda-aec3-cb9272f09590"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating @@ -517,16 +658,17 @@ interactions: level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS - cipher suite upgrade needed","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}' + cipher suite upgrade needed","status":"Enabled"},{"recommendationType":"IoT_EOL_OSversion","name":"Operating + System (OS) on this device should be updated from current end-of-life version","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}' headers: cache-control: - no-cache content-length: - - '3216' + - '3667' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:20 GMT + - Wed, 28 Oct 2020 13:55:27 GMT expires: - '-1' pragma: @@ -560,18 +702,18 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.1 - Azure-SDK-For-Python AZURECLI/2.8.0 + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCLI/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East - US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"userDefinedResources":{"query":"where - type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"ba3e71a7-6385-4944-9f01-d611121199bb\" - and resourceGroup in~ (\"AzureCLI\")) | project id, name, type","querySubscriptions":["ba3e71a7-6385-4944-9f01-d611121199bb"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East + US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"userDefinedResources":{"query":"where + type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\" + and resourceGroup in~ (\"clitest.rg000001\")) | project id, name, type","querySubscriptions":["0b1f6471-1bf0-4dda-aec3-cb9272f09590"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating @@ -589,16 +731,17 @@ interactions: level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS - cipher suite upgrade needed","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azurecli/providers/microsoft.devices/iothubs/azurecli-hub"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}]}' + cipher suite upgrade needed","status":"Enabled"},{"recommendationType":"IoT_EOL_OSversion","name":"Operating + System (OS) on this device should be updated from current end-of-life version","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '3228' + - '3679' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jul 2020 12:01:21 GMT + - Wed, 28 Oct 2020 13:55:28 GMT expires: - '-1' pragma: @@ -617,4 +760,175 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security iot-solution show + Connection: + - keep-alive + ParameterSetName: + - --solution-name --resource-group + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/IoTSecuritySolutions/azurecli-hub","name":"azurecli-hub","type":"Microsoft.Security/IoTSecuritySolutions","location":"East + US","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":null,"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"userDefinedResources":{"query":"where + type != \"microsoft.devices/iothubs\" | where (subscriptionId == \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\" + and resourceGroup in~ (\"clitest.rg000001\")) | project id, name, type","querySubscriptions":["0b1f6471-1bf0-4dda-aec3-cb9272f09590"]},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service + prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent + sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd + process stopped sending events","status":"Enabled"},{"recommendationType":"IoT_Baseline","name":"Operating + system (OS) baseline validation failure","status":"Enabled"},{"recommendationType":"IoT_EdgeHubMemOptimize","name":"IoT + Edge Hub memory can be optimized","status":"Enabled"},{"recommendationType":"IoT_EdgeLoggingOptions","name":"No + logging configured for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_InconsistentModuleSettings","name":"SecurityGroup + has inconsistent module settings","status":"Enabled"},{"recommendationType":"IoT_InstallAgent","name":"Install + the Azure IoT Security agent","status":"Enabled"},{"recommendationType":"IoT_IPFilter_DenyAll","name":"Default + IP filter policy should be deny","status":"Enabled"},{"recommendationType":"IoT_IPFilter_PermissiveRule","name":"IP + filter rule includes a large IP range","status":"Enabled"},{"recommendationType":"IoT_OpenPorts","name":"Device + has open ports","status":"Enabled"},{"recommendationType":"IoT_PermissiveFirewallPolicy","name":"Permissive + firewall policy in one of the chains","status":"Enabled"},{"recommendationType":"IoT_PermissiveInputFirewallRules","name":"Permissive + firewall rule in the input chain","status":"Enabled"},{"recommendationType":"IoT_PermissiveOutputFirewallRules","name":"Permissive + firewall rule in the output chain","status":"Enabled"},{"recommendationType":"IoT_PrivilegedDockerOptions","name":"High + level permissions configured in IoT Edge model twin for IoT Edge module","status":"Enabled"},{"recommendationType":"IoT_RecommendedIpRulesByBaseLine","name":"Recommended + Rules for ip filter","status":"Enabled"},{"recommendationType":"IoT_SharedCredentials","name":"Same + authentication credentials used by multiple devices","status":"Enabled"},{"recommendationType":"IoT_VulnerableTLSCipherSuite","name":"TLS + cipher suite upgrade needed","status":"Enabled"},{"recommendationType":"IoT_EOL_OSversion","name":"Operating + System (OS) on this device should be updated from current end-of-life version","status":"Enabled"}],"autoDiscoveredResources":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.devices/iothubs/azurecli-hub000002"],"unmaskedIpLoggingStatus":"Disabled"},"tags":{}}' + headers: + cache-control: + - no-cache + content-length: + - '3667' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 13:55:30 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-resource-requests: + - '749' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security iot-solution delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --solution-name --resource-group + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 28 Oct 2020 13:55:35 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-resource-requests: + - '249' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security iot-solution list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - python/3.6.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 28 Oct 2020 13:55:36 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-resource-requests: + - '749' + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_workspace_settings.yaml b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_workspace_settings.yaml index 48a3adc5714..a4bd7aaf9ab 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_workspace_settings.yaml +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_workspace_settings.yaml @@ -1,6 +1,284 @@ interactions: - request: - body: '{"properties": {"workspaceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews", + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource create + Connection: + - keep-alive + ParameterSetName: + - -g -n --resource-type -p + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2020-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '7604' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:04: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: + - resource create + Connection: + - keep-alive + ParameterSetName: + - -g -n --resource-type -p + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T03:04:28Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '471' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:04: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: '{"location": "westus", "properties": {"sku": {"name": "pergb2018"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource create + Connection: + - keep-alive + Content-Length: + - '68' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --resource-type -p + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/testsecws000002?api-version=2020-08-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"93f9f913-ccf9-48ae-8b80-9fe4b12ab368\",\r\n \"provisioningState\": \"Creating\",\r\n + \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"maxCapacityReservationLevel\": + 3000,\r\n \"lastSkuUpdate\": \"Thu, 29 Oct 2020 03:04:38 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\": \"Thu, 29 Oct 2020 09:00:00 GMT\",\r\n \"dataIngestionStatus\": + \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n + \ \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": + \"Thu, 29 Oct 2020 03:04:38 GMT\",\r\n \"modifiedDate\": \"Thu, 29 Oct + 2020 03:04:38 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/testsecws000002\",\r\n + \ \"name\": \"testsecws000002\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n + \ \"location\": \"westus\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1177' + content-type: + - application/json + date: + - Thu, 29 Oct 2020 03:04:39 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource create + Connection: + - keep-alive + ParameterSetName: + - -g -n --resource-type -p + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/testsecws000002?api-version=2020-08-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"93f9f913-ccf9-48ae-8b80-9fe4b12ab368\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"maxCapacityReservationLevel\": + 3000,\r\n \"lastSkuUpdate\": \"Thu, 29 Oct 2020 03:04:38 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\": \"Thu, 29 Oct 2020 09:00:00 GMT\",\r\n \"dataIngestionStatus\": + \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n + \ \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": + \"Thu, 29 Oct 2020 03:04:38 GMT\",\r\n \"modifiedDate\": \"Thu, 29 Oct + 2020 03:04:39 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/testsecws000002\",\r\n + \ \"name\": \"testsecws000002\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n + \ \"location\": \"westus\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1178' + content-type: + - application/json + date: + - Thu, 29 Oct 2020 03:05:10 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": {"workspaceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/testsecws000002", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: Accept: @@ -12,30 +290,30 @@ interactions: Connection: - keep-alive Content-Length: - - '241' + - '313' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --target-workspace User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default?api-version=2017-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default","name":"default","type":"Microsoft.Security/workspaceSettings","properties":{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews","scope":"/subscriptions/00000000-0000-0000-0000-000000000000"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default","name":"default","type":"Microsoft.Security/workspaceSettings","properties":{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/testsecws000002","scope":"/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: cache-control: - no-cache content-length: - - '414' + - '486' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:37 GMT + - Thu, 29 Oct 2020 03:05:14 GMT expires: - '-1' pragma: @@ -67,24 +345,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings?api-version=2017-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default","name":"default","type":"Microsoft.Security/workspaceSettings","properties":{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews","scope":"/subscriptions/00000000-0000-0000-0000-000000000000"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default","name":"default","type":"Microsoft.Security/workspaceSettings","properties":{"scope":"/subscriptions/00000000-0000-0000-0000-000000000000"}}]}' headers: cache-control: - no-cache content-length: - - '426' + - '267' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:38 GMT + - Thu, 29 Oct 2020 03:05:16 GMT expires: - '-1' pragma: @@ -118,24 +396,24 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default?api-version=2017-08-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default","name":"default","type":"Microsoft.Security/workspaceSettings","properties":{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews","scope":"/subscriptions/00000000-0000-0000-0000-000000000000"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/workspaceSettings/default","name":"default","type":"Microsoft.Security/workspaceSettings","properties":{"scope":"/subscriptions/00000000-0000-0000-0000-000000000000"}}' headers: cache-control: - no-cache content-length: - - '414' + - '255' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:40 GMT + - Thu, 29 Oct 2020 03:05:16 GMT expires: - '-1' pragma: @@ -171,8 +449,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -184,7 +462,7 @@ interactions: cache-control: - no-cache date: - - Wed, 17 Jun 2020 09:45:41 GMT + - Thu, 29 Oct 2020 03:05:18 GMT expires: - '-1' pragma: @@ -212,8 +490,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-security/0.4.0 - Azure-SDK-For-Python AZURECLI/2.7.0 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-security/0.4.1 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -229,7 +507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jun 2020 09:45:42 GMT + - Thu, 29 Oct 2020 03:05:19 GMT expires: - '-1' pragma: @@ -249,4 +527,158 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --ids + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.operationalinsights?api-version=2020-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '7604' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 03:05: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: + - resource delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --ids + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/testsecws000002?api-version=2020-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 29 Oct 2020 03:05:26 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_adaptive_application_controls.py b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_adaptive_application_controls.py index d661dc32a73..bc7e83ca419 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_adaptive_application_controls.py +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_adaptive_application_controls.py @@ -9,13 +9,18 @@ class SecurityCenterAdaptiveadaptiveApplicationControlsTests(ScenarioTest): + # This test makes use of existing resources @AllowLargeResponse() def test_adaptive_application_controls(self): adaptive_application_controls = self.cmd('az security adaptive-application-controls list').get_output_in_json() assert len(adaptive_application_controls) >= 0 + group_name = adaptive_application_controls['value'][0]['name'] + self.kwargs.update({ + 'group_name': group_name + }) - adaptive_application_controls = self.cmd('az security adaptive-application-controls show --group-name GROUP1').get_output_in_json() + adaptive_application_controls = self.cmd('az security adaptive-application-controls show --group-name {group_name}').get_output_in_json() assert len(adaptive_application_controls) >= 0 diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_alerts_scenario.py b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_alerts_scenario.py index 23a530e1b68..abc6e2c30b2 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_alerts_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_alerts_scenario.py @@ -11,7 +11,6 @@ # TODO: revert when #9406 is addressed class SecurityCenterAlertsTests(LiveScenarioTest): - @AllowLargeResponse() def test_security_alerts(self): alerts = self.cmd('az security alert list').get_output_in_json() diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py index 0d19d8700a5..af7c2de04f4 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py @@ -3,29 +3,35 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure.cli.testsdk import ScenarioTest +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer from azure_devtools.scenario_tests import AllowLargeResponse class SecurityCenterIotTests(ScenarioTest): @AllowLargeResponse() + @ResourceGroupPreparer(location='eastus') def test_security_iot(self): - if(self.cmd('az security iot-solution list --resource-group "AzureCLI"').get_output_in_json() == 0): - return + self.kwargs.update({ + 'iot_hub_name': self.create_random_name(prefix='azurecli-hub', length=24) + }) + iot_hub_id = self.cmd('az iot hub create -n {iot_hub_name} -g {rg}').get_output_in_json()['id'] + self.kwargs.update({ + 'iot_hub_id': iot_hub_id + }) + + self.cmd('az security iot-solution create --solution-name "azurecli-hub" --resource-group {rg} --iot-hubs {iot_hub_id} --display-name "Solution Default" --location "east us"') + azure_cli_new_iot_security_solution = self.cmd('az security iot-solution list --resource-group {rg}').get_output_in_json() + assert len(azure_cli_new_iot_security_solution) == 1 + + self.cmd('az security iot-solution update --solution-name "azurecli-hub" --resource-group {rg} --iot-hubs {iot_hub_id} --display-name "Solution Default"') + azure_cli_new_iot_security_solution = self.cmd('az security iot-solution list --resource-group {rg}').get_output_in_json() + assert len(azure_cli_new_iot_security_solution) == 1 - azure_cli_iot_security_solution = self.cmd('az security iot-solution show --solution-name "azurecli-hub" --resource-group "AzureCLI"').get_output_in_json() + azure_cli_iot_security_solution = self.cmd('az security iot-solution show --solution-name "azurecli-hub" --resource-group {rg}').get_output_in_json() assert len(azure_cli_iot_security_solution) >= 1 - self.cmd('az security iot-solution delete --solution-name "azurecli-hub" --resource-group "AzureCLI"') + self.cmd('az security iot-solution delete --solution-name "azurecli-hub" --resource-group {rg}') - azure_cli_no_iot_security_solution = self.cmd('az security iot-solution list --resource-group "AzureCLI"').get_output_in_json() + azure_cli_no_iot_security_solution = self.cmd('az security iot-solution list --resource-group {rg}').get_output_in_json() assert len(azure_cli_no_iot_security_solution) == 0 - - self.cmd('az security iot-solution create --solution-name "azurecli-hub" --resource-group "AzureCLI" --iot-hubs /subscriptions/ba3e71a7-6385-4944-9f01-d611121199bb/resourcegroups/AzureCLI/providers/Microsoft.Devices/IotHubs/azurecli-hub --display-name "Solution Default" --location "east us"') - azure_cli_new_iot_security_solution = self.cmd('az security iot-solution list --resource-group "AzureCLI"').get_output_in_json() - assert len(azure_cli_new_iot_security_solution) == 1 - - self.cmd('az security iot-solution update --solution-name "azurecli-hub" --resource-group "AzureCLI" --iot-hubs /subscriptions/ba3e71a7-6385-4944-9f01-d611121199bb/resourcegroups/AzureCLI/providers/Microsoft.Devices/IotHubs/azurecli-hub --display-name "Solution Default"') - azure_cli_new_iot_security_solution = self.cmd('az security iot-solution list --resource-group "AzureCLI"').get_output_in_json() - assert len(azure_cli_new_iot_security_solution) == 1 diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_security_contacts_scenario.py b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_security_contacts_scenario.py index e877d5e7ebd..05d097502e3 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_security_contacts_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_security_contacts_scenario.py @@ -11,7 +11,7 @@ class SecurityCenterSecurityContactsTests(ScenarioTest): def test_security_contacts(self): - self.cmd('az security contact create -n default1 --email john@contoso.com') + self.cmd('az security contact create -n default1 --email john@contoso.com --alert-notifications off --alerts-admins off') security_contacts = self.cmd('az security contact list').get_output_in_json() assert len(security_contacts) >= 0 @@ -20,7 +20,7 @@ def test_security_contacts(self): assert contact["email"] == "john@contoso.com" - self.cmd('az security contact create -n default1 --email lisa@contoso.com') + self.cmd('az security contact create -n default1 --email lisa@contoso.com --alert-notifications off --alerts-admins off') contact = self.cmd('az security contact show -n default1').get_output_in_json() diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_workspace_settings_scenario.py b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_workspace_settings_scenario.py index f5c63d5c1e6..7730b980c73 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_workspace_settings_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_workspace_settings_scenario.py @@ -3,27 +3,46 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure.cli.testsdk import ScenarioTest +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer from azure_devtools.scenario_tests import AllowLargeResponse +import os -class SecurityCenterWorkspaceSettingsTests(ScenarioTest): +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) - def test_security_workspace_settings(self): - workspace_id = "/subscriptions/487bb485-b5b0-471e-9c0d-10717612f869/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews" +class SecurityCenterWorkspaceSettingsTests(ScenarioTest): - self.cmd('az security workspace-setting create -n default --target-workspace ' + workspace_id) + @ResourceGroupPreparer() + def test_security_workspace_settings(self): + self.kwargs.update({ + 'ws': self.create_random_name('testsecws', 20), + 'la_prop_path': os.path.join(TEST_DIR, 'loganalytics.json') + }) + + ws_response = self.cmd('az resource create -g {rg} -n {ws} ' + '--resource-type Microsoft.OperationalInsights/workspaces -p @"{la_prop_path}"') \ + .get_output_in_json() + workspace_id = ws_response['id'] + self.kwargs.update({ + 'workspace_id': workspace_id + }) + + self.cmd('az security workspace-setting create -n default --target-workspace "{workspace_id}"') workspace_settings = self.cmd('az security workspace-setting list').get_output_in_json() assert len(workspace_settings) >= 0 workspace_setting = self.cmd('az security workspace-setting show -n default').get_output_in_json() + assert workspace_setting['name'] == 'default' - assert workspace_setting["workspaceId"].split('/')[-1] == workspace_id.split('/')[-1] + # workspaceId is not returned, it's a potential issue on service side + # assert workspace_setting["workspaceId"].split('/')[-1] == workspace_id.split('/')[-1] self.cmd('az security workspace-setting delete -n default') workspace_settings = self.cmd('az security workspace-setting list').get_output_in_json() assert len(workspace_settings) == 0 + + self.cmd('az resource delete --ids {workspace_id}') diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml index 0cd3f30fdae..20050cadff4 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:14 GMT + - Thu, 29 Oct 2020 07:24:44 GMT expires: - '-1' pragma: @@ -58,24 +58,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:15 GMT + - Thu, 29 Oct 2020 07:24:44 GMT expires: - '-1' pragma: @@ -103,24 +103,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:16 GMT + - Thu, 29 Oct 2020 07:24:45 GMT expires: - '-1' pragma: @@ -148,24 +148,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:16 GMT + - Thu, 29 Oct 2020 07:24:45 GMT expires: - '-1' pragma: @@ -193,24 +193,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:17 GMT + - Thu, 29 Oct 2020 07:24:45 GMT expires: - '-1' pragma: @@ -238,24 +238,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:18 GMT + - Thu, 29 Oct 2020 07:24:46 GMT expires: - '-1' pragma: @@ -283,24 +283,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:17 GMT + - Thu, 29 Oct 2020 07:24:46 GMT expires: - '-1' pragma: @@ -328,24 +328,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:19 GMT + - Thu, 29 Oct 2020 07:24:47 GMT expires: - '-1' pragma: @@ -373,24 +373,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:20 GMT + - Thu, 29 Oct 2020 07:24:47 GMT expires: - '-1' pragma: @@ -418,24 +418,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:20 GMT + - Thu, 29 Oct 2020 07:24:47 GMT expires: - '-1' pragma: @@ -463,24 +463,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:20 GMT + - Thu, 29 Oct 2020 07:24:48 GMT expires: - '-1' pragma: @@ -508,24 +508,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T07:24:42Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:21 GMT + - Thu, 29 Oct 2020 07:24:48 GMT expires: - '-1' pragma: @@ -540,10 +540,10 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "properties": {"dnsName": "sfrp-cli-000002", - "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName": - "vmadmin", "adminPassword": "Pass@000003", "clients": [{"isAdmin": true, "thumbprint": - "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, "sku": {"name": "Basic"}}' + body: '{"location": "eastasia", "properties": {"dnsName": "sfrp-cli-000002", "clientConnectionPort": + 19000, "httpGatewayConnectionPort": 19080, "adminUserName": "vmadmin", "adminPassword": + "Pass@000003", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, + "sku": {"name": "Basic"}}' headers: Accept: - application/json @@ -554,14 +554,14 @@ interactions: Connection: - keep-alive Content-Length: - - '326' + - '320' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -570,9 +570,9 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"16b20062-51b9-4fb1-a91e-9284bbb749a0\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n @@ -580,21 +580,21 @@ interactions: \ ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '862' + - '856' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:24 GMT + - Thu, 29 Oct 2020 07:24:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -622,14 +622,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\": - \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -637,17 +637,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:54:54 GMT + - Thu, 29 Oct 2020 07:25:26 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -673,14 +674,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\": - \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -688,17 +689,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:55:24 GMT + - Thu, 29 Oct 2020 07:25:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -724,32 +726,33 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\": - \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:55:55 GMT + - Thu, 29 Oct 2020 07:26:26 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -775,32 +778,33 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\": - \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:56:25 GMT + - Thu, 29 Oct 2020 07:26:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -826,14 +830,66 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\": - \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 07:27: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --cert-thumbprint --cert-is-admin --admin-password + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -841,17 +897,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:56:54 GMT + - Thu, 29 Oct 2020 07:27:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -877,14 +934,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/23bf0003-7975-4667-8b0b-4eaef26c6872?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\": - \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"2020-09-09T02:57:06.0067968Z\",\r\n + string: "{\r\n \"name\": \"23bf0003-7975-4667-8b0b-4eaef26c6872\",\r\n \"startTime\": + \"2020-10-29T07:24:54.401234Z\",\r\n \"endTime\": \"2020-10-29T07:28:00.8455635Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -892,17 +949,18 @@ interactions: cache-control: - no-cache content-length: - - '294' + - '293' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:57:24 GMT + - Thu, 29 Oct 2020 07:28:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -928,20 +986,20 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterState\": - \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": - \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n - \ \"clusterCertificateThumbprint\": \"31A218F5161013F32CB96FCD3878196CB0DCA3A4\",\r\n + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"16b20062-51b9-4fb1-a91e-9284bbb749a0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n + \ \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n + \ \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n + \ \"clusterCertificateThumbprint\": \"EA1A111C74C9C04C5B75F42CB489EEA79BCC0D00\",\r\n \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n @@ -950,17 +1008,18 @@ interactions: cache-control: - no-cache content-length: - - '1059' + - '1047' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:57:25 GMT + - Thu, 29 Oct 2020 07:28:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -993,8 +1052,8 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -1003,7 +1062,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1012,21 +1071,22 @@ interactions: \ \"capacities\": {}\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '763' + - '757' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:57:26 GMT + - Thu, 29 Oct 2020 07:28:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1054,15 +1114,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1073,13 +1133,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:57:57 GMT + - Thu, 29 Oct 2020 07:28:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1105,15 +1166,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1124,13 +1185,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:58:27 GMT + - Thu, 29 Oct 2020 07:29:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1156,15 +1218,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1175,13 +1237,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:58:57 GMT + - Thu, 29 Oct 2020 07:30:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1207,14 +1270,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1226,13 +1289,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:59:28 GMT + - Thu, 29 Oct 2020 07:30:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1258,14 +1322,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1277,13 +1341,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 02:59:57 GMT + - Thu, 29 Oct 2020 07:31:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1309,14 +1374,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1328,13 +1393,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:00:29 GMT + - Thu, 29 Oct 2020 07:31:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1360,14 +1426,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1379,13 +1445,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:00:59 GMT + - Thu, 29 Oct 2020 07:32:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1411,14 +1478,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1430,13 +1497,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:01:29 GMT + - Thu, 29 Oct 2020 07:32:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1462,14 +1530,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1481,13 +1549,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:02:00 GMT + - Thu, 29 Oct 2020 07:33:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1513,14 +1582,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1532,13 +1601,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:02:30 GMT + - Thu, 29 Oct 2020 07:33:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1564,14 +1634,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1583,13 +1653,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:02:59 GMT + - Thu, 29 Oct 2020 07:34:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1615,14 +1686,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1634,13 +1705,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:03:29 GMT + - Thu, 29 Oct 2020 07:34:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1666,14 +1738,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1685,13 +1757,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:04:00 GMT + - Thu, 29 Oct 2020 07:35:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1717,14 +1790,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1736,13 +1809,66 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:04:30 GMT + - Thu, 29 Oct 2020 07:35:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 07: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: @@ -1768,14 +1894,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/74cf0003-c62d-4914-a3e2-fbb2b7320d82?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\": - \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"2020-09-09T03:04:59.4668819Z\",\r\n + string: "{\r\n \"name\": \"74cf0003-c62d-4914-a3e2-fbb2b7320d82\",\r\n \"startTime\": + \"2020-10-29T07:28:28.1350289Z\",\r\n \"endTime\": \"2020-10-29T07:36:30.5111853Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1787,13 +1913,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:05:00 GMT + - Thu, 29 Oct 2020 07:36:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1819,15 +1946,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1838,17 +1965,18 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:05:00 GMT + - Thu, 29 Oct 2020 07:36:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1876,8 +2004,8 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -1894,13 +2022,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:05:02 GMT + - Thu, 29 Oct 2020 07:36:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1924,8 +2053,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1934,13 +2063,13 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterState\": - \"Deploying\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"16b20062-51b9-4fb1-a91e-9284bbb749a0\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"31A218F5161013F32CB96FCD3878196CB0DCA3A4\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"EA1A111C74C9C04C5B75F42CB489EEA79BCC0D00\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -1948,17 +2077,18 @@ interactions: cache-control: - no-cache content-length: - - '1096' + - '1084' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:05:03 GMT + - Thu, 29 Oct 2020 07:36:35 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1986,8 +2116,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -1996,34 +2126,34 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"16b20062-51b9-4fb1-a91e-9284bbb749a0\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"31A218F5161013F32CB96FCD3878196CB0DCA3A4\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"EA1A111C74C9C04C5B75F42CB489EEA79BCC0D00\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '1018' + - '1006' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:05:04 GMT + - Thu, 29 Oct 2020 07:36:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -2047,14 +2177,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2066,13 +2196,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:05:35 GMT + - Thu, 29 Oct 2020 07:37:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2098,14 +2229,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2117,13 +2248,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:06:05 GMT + - Thu, 29 Oct 2020 07:37:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2149,14 +2281,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2168,13 +2300,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:06:35 GMT + - Thu, 29 Oct 2020 07:38:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2200,14 +2333,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2219,13 +2352,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:07:06 GMT + - Thu, 29 Oct 2020 07:38:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2251,14 +2385,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2270,13 +2404,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:07:35 GMT + - Thu, 29 Oct 2020 07:39:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2302,14 +2437,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2321,13 +2456,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:08:05 GMT + - Thu, 29 Oct 2020 07:39:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2353,14 +2489,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2372,13 +2508,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:08:35 GMT + - Thu, 29 Oct 2020 07:40:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2404,14 +2541,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2423,13 +2560,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:09:05 GMT + - Thu, 29 Oct 2020 07:40:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2455,14 +2593,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2474,13 +2612,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:09:36 GMT + - Thu, 29 Oct 2020 07:41:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2506,14 +2645,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2525,13 +2664,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:10:06 GMT + - Thu, 29 Oct 2020 07:41:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2557,14 +2697,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2576,13 +2716,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:10:36 GMT + - Thu, 29 Oct 2020 07:42:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2608,116 +2749,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/85a40003-3b72-46d2-89b8-e0277cbcf3b2?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 09 Sep 2020 03:11:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.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 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf managed-cluster delete - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local - response: - body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 09 Sep 2020 03:11:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.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 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf managed-cluster delete - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local - response: - body: - string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\": - \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"2020-09-09T03:12:05.8528337Z\",\r\n + string: "{\r\n \"name\": \"85a40003-3b72-46d2-89b8-e0277cbcf3b2\",\r\n \"startTime\": + \"2020-10-29T07:36:36.7999045Z\",\r\n \"endTime\": \"2020-10-29T07:42:38.1263485Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2729,13 +2768,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:12:07 GMT + - Thu, 29 Oct 2020 07:42:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2761,8 +2801,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -2776,13 +2816,14 @@ interactions: content-length: - '0' date: - - Wed, 09 Sep 2020 03:12:08 GMT + - Thu, 29 Oct 2020 07:42:40 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cert_and_ext.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cert_and_ext.yaml index 4cf8c7d6bd8..77d70d54818 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cert_and_ext.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cert_and_ext.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:04 GMT + - Thu, 29 Oct 2020 04:44:21 GMT expires: - '-1' pragma: @@ -58,24 +58,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:05 GMT + - Thu, 29 Oct 2020 04:44:22 GMT expires: - '-1' pragma: @@ -103,24 +103,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:05 GMT + - Thu, 29 Oct 2020 04:44:22 GMT expires: - '-1' pragma: @@ -148,24 +148,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:06 GMT + - Thu, 29 Oct 2020 04:44:22 GMT expires: - '-1' pragma: @@ -193,24 +193,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:06 GMT + - Thu, 29 Oct 2020 04:44:23 GMT expires: - '-1' pragma: @@ -238,24 +238,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:07 GMT + - Thu, 29 Oct 2020 04:44:23 GMT expires: - '-1' pragma: @@ -283,24 +283,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:07 GMT + - Thu, 29 Oct 2020 04:44:23 GMT expires: - '-1' pragma: @@ -328,24 +328,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:08 GMT + - Thu, 29 Oct 2020 04:44:23 GMT expires: - '-1' pragma: @@ -373,24 +373,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:08 GMT + - Thu, 29 Oct 2020 04:44:24 GMT expires: - '-1' pragma: @@ -418,24 +418,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:08 GMT + - Thu, 29 Oct 2020 04:44:24 GMT expires: - '-1' pragma: @@ -463,24 +463,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:09 GMT + - Thu, 29 Oct 2020 04:44:25 GMT expires: - '-1' pragma: @@ -508,24 +508,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T04:44:18Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:10 GMT + - Thu, 29 Oct 2020 04:44:25 GMT expires: - '-1' pragma: @@ -540,10 +540,10 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "properties": {"dnsName": "sfrp-cli-000002", - "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName": - "vmadmin", "adminPassword": "Pass@000003", "clients": [{"isAdmin": true, "thumbprint": - "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, "sku": {"name": "Basic"}}' + body: '{"location": "eastasia", "properties": {"dnsName": "sfrp-cli-000002", "clientConnectionPort": + 19000, "httpGatewayConnectionPort": 19080, "adminUserName": "vmadmin", "adminPassword": + "Pass@000003", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, + "sku": {"name": "Basic"}}' headers: Accept: - application/json @@ -554,14 +554,14 @@ interactions: Connection: - keep-alive Content-Length: - - '326' + - '320' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -570,9 +570,9 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n @@ -580,21 +580,21 @@ interactions: \ ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '862' + - '856' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:13 GMT + - Thu, 29 Oct 2020 04:44:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -622,14 +622,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -641,13 +641,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:32:43 GMT + - Thu, 29 Oct 2020 04:45:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -673,14 +674,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -692,13 +693,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:33:13 GMT + - Thu, 29 Oct 2020 04:45:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -724,15 +726,15 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -743,13 +745,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:33:44 GMT + - Thu, 29 Oct 2020 04:46:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -775,15 +778,15 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -794,13 +797,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:34:14 GMT + - Thu, 29 Oct 2020 04:46:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -826,15 +830,15 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -845,13 +849,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:34:44 GMT + - Thu, 29 Oct 2020 04:47:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -877,14 +882,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -896,13 +901,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:35:14 GMT + - Thu, 29 Oct 2020 04:47:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -928,14 +934,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/f7890001-a3b5-486f-9944-097ac4263655?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\": - \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"2020-09-09T04:35:39.4347032Z\",\r\n + string: "{\r\n \"name\": \"f7890001-a3b5-486f-9944-097ac4263655\",\r\n \"startTime\": + \"2020-10-29T04:44:31.9223628Z\",\r\n \"endTime\": \"2020-10-29T04:47:41.5163479Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -947,13 +953,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:35:45 GMT + - Thu, 29 Oct 2020 04:48:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -979,20 +986,20 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": - \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n - \ \"clusterCertificateThumbprint\": \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n + \ \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n + \ \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n + \ \"clusterCertificateThumbprint\": \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n @@ -1001,17 +1008,18 @@ interactions: cache-control: - no-cache content-length: - - '1059' + - '1047' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:35:45 GMT + - Thu, 29 Oct 2020 04:48:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1044,8 +1052,8 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -1054,7 +1062,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1063,21 +1071,22 @@ interactions: \ \"capacities\": {}\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '763' + - '757' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:35:48 GMT + - Thu, 29 Oct 2020 04:48:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1105,15 +1114,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1124,13 +1133,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:36:19 GMT + - Thu, 29 Oct 2020 04:48:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1156,15 +1166,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1175,13 +1185,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:36:49 GMT + - Thu, 29 Oct 2020 04:49:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1207,15 +1218,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1226,13 +1237,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:37:19 GMT + - Thu, 29 Oct 2020 04:49:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1258,15 +1270,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1277,13 +1289,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:37:49 GMT + - Thu, 29 Oct 2020 04:50:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1309,14 +1322,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1328,13 +1341,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:38:18 GMT + - Thu, 29 Oct 2020 04:50:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1360,14 +1374,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1379,13 +1393,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:38:49 GMT + - Thu, 29 Oct 2020 04:51:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1411,14 +1426,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1430,13 +1445,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:39:19 GMT + - Thu, 29 Oct 2020 04:51:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1462,14 +1478,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1481,13 +1497,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:39:49 GMT + - Thu, 29 Oct 2020 04:52:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1513,14 +1530,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1532,13 +1549,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:40:19 GMT + - Thu, 29 Oct 2020 04:52:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1564,14 +1582,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1583,13 +1601,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:40:49 GMT + - Thu, 29 Oct 2020 04:53:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1615,14 +1634,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1634,13 +1653,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:41:20 GMT + - Thu, 29 Oct 2020 04:53:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1666,14 +1686,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1685,13 +1705,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:41:50 GMT + - Thu, 29 Oct 2020 04:54:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1717,14 +1738,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1736,13 +1757,222 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:42:20 GMT + - Thu, 29 Oct 2020 04:54:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 04:55: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 04:55: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 04:56: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 04:56: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: @@ -1768,14 +1998,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c8050001-6d3b-46cb-864e-9cb379a2f635?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\": - \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"2020-09-09T04:42:50.4448771Z\",\r\n + string: "{\r\n \"name\": \"c8050001-6d3b-46cb-864e-9cb379a2f635\",\r\n \"startTime\": + \"2020-10-29T04:48:05.9039194Z\",\r\n \"endTime\": \"2020-10-29T04:57:07.9255044Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1787,13 +2017,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:42:50 GMT + - Thu, 29 Oct 2020 04:57:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1819,15 +2050,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1838,17 +2069,18 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:42:50 GMT + - Thu, 29 Oct 2020 04:57:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1875,8 +2107,8 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1885,7 +2117,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1896,17 +2128,18 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:42:51 GMT + - Thu, 29 Oct 2020 04:57:11 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1942,8 +2175,8 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -1952,7 +2185,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1965,23 +2198,24 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '1033' + - '1027' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:42:51 GMT + - Thu, 29 Oct 2020 04:57:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -2006,14 +2240,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2025,13 +2259,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:43:22 GMT + - Thu, 29 Oct 2020 04:57:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2058,14 +2293,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2077,13 +2312,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:43:52 GMT + - Thu, 29 Oct 2020 04:58:12 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2110,14 +2346,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2129,13 +2365,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:44:22 GMT + - Thu, 29 Oct 2020 04:58:42 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2162,14 +2399,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2181,13 +2418,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:44:53 GMT + - Thu, 29 Oct 2020 04:59:12 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2214,14 +2452,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2233,13 +2471,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:45:22 GMT + - Thu, 29 Oct 2020 04:59:42 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2266,14 +2505,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2285,13 +2524,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:45:52 GMT + - Thu, 29 Oct 2020 05:00:12 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2318,14 +2558,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2337,13 +2577,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:46:22 GMT + - Thu, 29 Oct 2020 05:00:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2370,14 +2611,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2389,13 +2630,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:46:52 GMT + - Thu, 29 Oct 2020 05:01:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2422,14 +2664,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2441,13 +2683,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:47:23 GMT + - Thu, 29 Oct 2020 05:01:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2474,14 +2717,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2493,13 +2736,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:47:53 GMT + - Thu, 29 Oct 2020 05:02:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2526,14 +2770,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2545,13 +2789,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:48:23 GMT + - Thu, 29 Oct 2020 05:02:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2578,14 +2823,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2597,13 +2842,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:48:53 GMT + - Thu, 29 Oct 2020 05:03:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2630,15 +2876,15 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -2649,13 +2895,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:49:23 GMT + - Thu, 29 Oct 2020 05:03:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2682,15 +2929,15 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -2701,13 +2948,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:49:53 GMT + - Thu, 29 Oct 2020 05:04:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2734,15 +2982,15 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -2753,13 +3001,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:50:24 GMT + - Thu, 29 Oct 2020 05:04:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2786,15 +3035,15 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -2805,13 +3054,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:50:55 GMT + - Thu, 29 Oct 2020 05:05:14 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2838,14 +3088,14 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2857,13 +3107,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:51:25 GMT + - Thu, 29 Oct 2020 05:05:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2890,32 +3141,33 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\": - \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"2020-09-09T04:51:46.4561641Z\",\r\n - \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '294' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:51:55 GMT + - Thu, 29 Oct 2020 05:06:14 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2942,15 +3194,227 @@ interactions: - -g -c -n --extension-name --publisher --extension-type --type-handler-version --auto-upgrade-minor-version User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:06: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type vm-extension add + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --extension-name --publisher --extension-type --type-handler-version + --auto-upgrade-minor-version + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:07: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type vm-extension add + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --extension-name --publisher --extension-type --type-handler-version + --auto-upgrade-minor-version + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:07: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type vm-extension add + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --extension-name --publisher --extension-type --type-handler-version + --auto-upgrade-minor-version + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/84080001-98f0-4f4f-9a7a-444300bd5785?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"84080001-98f0-4f4f-9a7a-444300bd5785\",\r\n \"startTime\": + \"2020-10-29T04:57:11.5272197Z\",\r\n \"endTime\": \"2020-10-29T05:07:48.370671Z\",\r\n + \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:08: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type vm-extension add + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --extension-name --publisher --extension-type --type-handler-version + --auto-upgrade-minor-version + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -2965,17 +3429,18 @@ interactions: cache-control: - no-cache content-length: - - '1034' + - '1028' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:51:55 GMT + - Thu, 29 Oct 2020 05:08:15 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3001,8 +3466,8 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -3011,7 +3476,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -3026,17 +3491,18 @@ interactions: cache-control: - no-cache content-length: - - '1034' + - '1028' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:51:57 GMT + - Thu, 29 Oct 2020 05:08:16 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3058,52 +3524,41 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-graphrbac/0.60.0 - Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","2f442157-a11c-46b9-ae5b-6e39ff4e5849","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-08-14T17:03:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T09:13:42Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Containers-BBURNS-OPEX-1010","dirSyncEnabled":true,"displayName":"Alfredo - Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE - ENGINEER","lastDirSyncTime":"2020-09-03T10:09:01Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo - Santamaria Gomez,OU=MSE,OU=Users,OU=CoreIdentity,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo - Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo - San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo - Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo - Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2020-08-01T20:12:10Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria - Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P84536","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"84536","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91710758","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"41","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"309","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 - Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu, - Tassaduq H.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"TASSB","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1252188"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"31e600e0-d7ce-4e98-a927-19bb30042e44","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-09-17T06:07:35Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Feng + Zhou","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"feng.zhou@microsoft.com","mailNickname":"feng.zhou_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["feng.zhou@microsoft.com","fenzhou@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:feng.zhou@microsoft.com"],"refreshTokensValidFromDateTime":"2019-09-17T06:07:35Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/31e600e0-d7ce-4e98-a927-19bb30042e44/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"feng.zhou_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-09-17T06:08:36Z","userType":"Guest"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '17717' + - '1725' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 09 Sep 2020 04:51:59 GMT + - Thu, 29 Oct 2020 05:08:18 GMT duration: - - '1052416' + - '3126150' expires: - '-1' ocp-aad-diagnostics-server-name: - - +pxYfTimt0+9cgpiOAtGp0JRJz5yxX63UiVVhp43BXY= + - 0dF5qqkpZb/WXc+kNRcgmQCe2K+ySPQY3hldLYoYDCM= ocp-aad-session-key: - - AUJy65TNyV1l4gKVX8fBdcMdLkwVRIkuqxYMX0un-n0CagjzTYzKs7T4XcQWop3S25mLi9W1jXOS8ytXOrrLAPP5cc1woqszi_sbtNS_o3lQv02SPJosOro4ig0LBQoX.e5s3uF1ZLCmmuiiq6bL70GfUoK-Q7vx_qyuGf45FgQo + - ANnkaJ0AQsVR_lHXd10N1ivYV3X04b3tnMsIPYkAuPwH308qjDyzvCliJtQoGx2BVx1owdi4LS8j6d6C6ZOsyle8pyK0kAcdU_uFVGpMlkvLL62gL_B_pYPYm8us-ONx.wwzfng9b_uY_SACv4_pkxGn-E3igu-iNC_NvGmqGfW0 pragma: - no-cache request-id: - - bdc983e4-bb9b-4b16-aa9b-d65ac3e1b4d9 + - 7753f7bd-6d23-4256-9e2d-a455b22125c7 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3118,9 +3573,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + body: '{"location": "eastasia", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "3307ff37-85af-4550-bc6a-d1e02672cb7c", + "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "31e600e0-d7ce-4e98-a927-19bb30042e44", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", @@ -3128,8 +3583,7 @@ interactions: "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}], "enabledForDeployment": true, "enabledForTemplateDeployment": true, "softDeleteRetentionInDays": - 90, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow", "ipRules": - [], "virtualNetworkRules": []}}}' + 90, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow"}}}' headers: Accept: - application/json @@ -3140,30 +3594,27 @@ interactions: Connection: - keep-alive Content-Length: - - '967' + - '919' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US + - AZURECLI/2.14.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004","name":"sfrp-cli-kv-000004","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000004.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004","name":"sfrp-cli-kv-000004","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"31e600e0-d7ce-4e98-a927-19bb30042e44","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000004.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache content-length: - - '1204' + - '1198' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:00 GMT + - Thu, 29 Oct 2020 05:08:27 GMT expires: - '-1' pragma: @@ -3181,7 +3632,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.31.0 + - 1.1.112.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: @@ -3193,7 +3644,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3203,22 +3654,21 @@ interactions: ParameterSetName: - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - AZURECLI/2.14.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004","name":"sfrp-cli-kv-000004","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000004.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004","name":"sfrp-cli-kv-000004","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"31e600e0-d7ce-4e98-a927-19bb30042e44","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000004.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1200' + - '1194' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:31 GMT + - Thu, 29 Oct 2020 05:08:58 GMT expires: - '-1' pragma: @@ -3236,7 +3686,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.31.0 + - 1.1.112.0 x-powered-by: - ASP.NET status: @@ -3256,8 +3706,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -3274,7 +3724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:32 GMT + - Thu, 29 Oct 2020 05:08:58 GMT expires: - '-1' pragma: @@ -3282,18 +3732,16 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", resource="https://vault.azure.net" - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.21;act_addr_fam=InterNetwork; x-ms-keyvault-region: - - southcentralus + - eastasia x-ms-keyvault-service-version: - - 1.1.60.0 + - 1.2.58.0 x-powered-by: - ASP.NET status: @@ -3319,17 +3767,17 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/create?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt1JaPCg8G8MmoJYIVgYgMW/S3MBObteUkYpK6ZgilgsRiiRH0SgaPqea33+L6LkZAlKxB4u4irn6iZxSMEvzhjYkJoske1gpj/icOVDMUzEbrbvDTy1MSgVPTajosICrSS+poM77ifONNANWwta1hnYMxUI8tmWlRz43XNM2v4N0UM/WPDKVPoyF4ZpjEm8cMiD3IQNOOwzJcW262gLY0oSe7UuQgl4comsG7KG46cm88gJw5VPG2mZh4OT1agQbPb22syw+5pTPhMHQvKZ649/YoLWJRpOhiBOZG1ag6ogKqFNka/HpQRrXCsZOtFdm8BwlcNX0jvNrXCeF3w8HUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCNwR/ayt6XGX2bRZ566dJ/WG1crxsmF9OOzJZ+1lmnUXDKUhrCP5AOjVQ939LwwTSmEIo3U8UFH6f70XmK7UJzwHTbvmLHuPt/6lXIFCbW7/2tJz3pSe5yX1h9aeCIzIwU7DgDUv3HIxbic1IhuiE3DbF9rDEriJiXEwkkO6zAwZlArekuVqGzaGSpfsOsjRLwAkbbRp8X+XWlmAj3JMei645434uoDovylqjCBZLxiTLpax0rSB63XwYc6rpJgledJd9AFH7EyIF8G2z7nuwQcW/DYIV/UX21mwR4YyH+DjnFne9Iz/57sXzruMm2x13JHNpiYG1yyq56/bRRIH0N","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"b6e5959a84c349e78ebbb0de6d38cc3c"}' + time based on the issuer provider. Please check again later.","request_id":"c099464249914783aec284bfe250c998"}' headers: cache-control: - no-cache @@ -3338,25 +3786,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:34 GMT + - Thu, 29 Oct 2020 05:09:02 GMT expires: - '-1' location: - - https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0&request_id=b6e5959a84c349e78ebbb0de6d38cc3c + - https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0&request_id=c099464249914783aec284bfe250c998 pragma: - no-cache strict-transport-security: - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.21;act_addr_fam=InterNetwork; x-ms-keyvault-region: - - southcentralus + - eastasia x-ms-keyvault-service-version: - - 1.1.60.0 + - 1.2.58.0 x-powered-by: - ASP.NET status: @@ -3374,70 +3820,17 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0 - response: - body: - string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"b6e5959a84c349e78ebbb0de6d38cc3c"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 09 Sep 2020 04:52:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.1.60.0 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt1JaPCg8G8MmoJYIVgYgMW/S3MBObteUkYpK6ZgilgsRiiRH0SgaPqea33+L6LkZAlKxB4u4irn6iZxSMEvzhjYkJoske1gpj/icOVDMUzEbrbvDTy1MSgVPTajosICrSS+poM77ifONNANWwta1hnYMxUI8tmWlRz43XNM2v4N0UM/WPDKVPoyF4ZpjEm8cMiD3IQNOOwzJcW262gLY0oSe7UuQgl4comsG7KG46cm88gJw5VPG2mZh4OT1agQbPb22syw+5pTPhMHQvKZ649/YoLWJRpOhiBOZG1ag6ogKqFNka/HpQRrXCsZOtFdm8BwlcNX0jvNrXCeF3w8HUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCNwR/ayt6XGX2bRZ566dJ/WG1crxsmF9OOzJZ+1lmnUXDKUhrCP5AOjVQ939LwwTSmEIo3U8UFH6f70XmK7UJzwHTbvmLHuPt/6lXIFCbW7/2tJz3pSe5yX1h9aeCIzIwU7DgDUv3HIxbic1IhuiE3DbF9rDEriJiXEwkkO6zAwZlArekuVqGzaGSpfsOsjRLwAkbbRp8X+XWlmAj3JMei645434uoDovylqjCBZLxiTLpax0rSB63XwYc6rpJgledJd9AFH7EyIF8G2z7nuwQcW/DYIV/UX21mwR4YyH+DjnFne9Iz/57sXzruMm2x13JHNpiYG1yyq56/bRRIH0N","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"b6e5959a84c349e78ebbb0de6d38cc3c"}' + time based on the issuer provider. Please check again later.","request_id":"c099464249914783aec284bfe250c998"}' headers: cache-control: - no-cache @@ -3446,23 +3839,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:46 GMT + - Thu, 29 Oct 2020 05:09:03 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.21;act_addr_fam=InterNetwork; x-ms-keyvault-region: - - southcentralus + - eastasia x-ms-keyvault-service-version: - - 1.1.60.0 + - 1.2.58.0 x-powered-by: - ASP.NET status: @@ -3480,15 +3871,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005","request_id":"b6e5959a84c349e78ebbb0de6d38cc3c"}' + string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt1JaPCg8G8MmoJYIVgYgMW/S3MBObteUkYpK6ZgilgsRiiRH0SgaPqea33+L6LkZAlKxB4u4irn6iZxSMEvzhjYkJoske1gpj/icOVDMUzEbrbvDTy1MSgVPTajosICrSS+poM77ifONNANWwta1hnYMxUI8tmWlRz43XNM2v4N0UM/WPDKVPoyF4ZpjEm8cMiD3IQNOOwzJcW262gLY0oSe7UuQgl4comsG7KG46cm88gJw5VPG2mZh4OT1agQbPb22syw+5pTPhMHQvKZ649/YoLWJRpOhiBOZG1ag6ogKqFNka/HpQRrXCsZOtFdm8BwlcNX0jvNrXCeF3w8HUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCNwR/ayt6XGX2bRZ566dJ/WG1crxsmF9OOzJZ+1lmnUXDKUhrCP5AOjVQ939LwwTSmEIo3U8UFH6f70XmK7UJzwHTbvmLHuPt/6lXIFCbW7/2tJz3pSe5yX1h9aeCIzIwU7DgDUv3HIxbic1IhuiE3DbF9rDEriJiXEwkkO6zAwZlArekuVqGzaGSpfsOsjRLwAkbbRp8X+XWlmAj3JMei645434uoDovylqjCBZLxiTLpax0rSB63XwYc6rpJgledJd9AFH7EyIF8G2z7nuwQcW/DYIV/UX21mwR4YyH+DjnFne9Iz/57sXzruMm2x13JHNpiYG1yyq56/bRRIH0N","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005","request_id":"c099464249914783aec284bfe250c998"}' headers: cache-control: - no-cache @@ -3497,23 +3888,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:55 GMT + - Thu, 29 Oct 2020 05:09:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.21;act_addr_fam=InterNetwork; x-ms-keyvault-region: - - southcentralus + - eastasia x-ms-keyvault-service-version: - - 1.1.60.0 + - 1.2.58.0 x-powered-by: - ASP.NET status: @@ -3531,15 +3920,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e","kid":"https://sfrp-cli-kv-000004.vault.azure.net/keys/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e","sid":"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e","x5t":"T_ipY90nW9FXd6yCkYXyQ9k_yXw","cer":"MIIDQjCCAiqgAwIBAgIQPkMqt2cDQX20Yfn+HapWnDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDkwOTA0NDI0NloXDTIxMDkwOTA0NTI0NlowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFNC6k4Q1I/5jhkQ/fjJ9IuXc5W9IMB0GA1UdDgQWBBTQupOENSP+Y4ZEP34yfSLl3OVvSDANBgkqhkiG9w0BAQsFAAOCAQEABjBHNbPSzdZ3j/wsm0Mu6SDk6fU/bb6AX/zqbEgs+Q5kF/6i2SjamCp6tQCK0YcP+Jw3Cw60oT6BQ4so+PkDFR0N95MErt/6s5jNcROSedda98U6iYvOMUS+5M2vvMwjaLRsx5rcpvoPKXc+8p7qyBK2c0nBrrBLoXdE7hgKV5/wFUocBE2sLK9t6EkMLalLGHhntNU4ilZX5rEXnYUiprzdNcv9Xwt/MKzUSZ2n6q6mIvDmdYGNB7eUQpQfyk7nvlf7ugwZntD2X+a3D+AUDx3ecM+TxPhrRtQ6r+9jcP9eFJ+E1dcdpqyKl/5Y3KXNc+nPIkolobcNJtP9rpFyDg==","attributes":{"enabled":true,"nbf":1599626566,"exp":1631163166,"created":1599627166,"updated":1599627166,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1599627154,"updated":1599627154}},"pending":{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending"}}' + string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420","kid":"https://sfrp-cli-kv-000004.vault.azure.net/keys/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420","sid":"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420","x5t":"MH1e6x-4kwRWe3jl-nlFDzgRttU","cer":"MIIDQjCCAiqgAwIBAgIQQbobB1QHROOjt/14q4B7ejANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMTAyOTA0NTkwNFoXDTIxMTAyOTA1MDkwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt1JaPCg8G8MmoJYIVgYgMW/S3MBObteUkYpK6ZgilgsRiiRH0SgaPqea33+L6LkZAlKxB4u4irn6iZxSMEvzhjYkJoske1gpj/icOVDMUzEbrbvDTy1MSgVPTajosICrSS+poM77ifONNANWwta1hnYMxUI8tmWlRz43XNM2v4N0UM/WPDKVPoyF4ZpjEm8cMiD3IQNOOwzJcW262gLY0oSe7UuQgl4comsG7KG46cm88gJw5VPG2mZh4OT1agQbPb22syw+5pTPhMHQvKZ649/YoLWJRpOhiBOZG1ag6ogKqFNka/HpQRrXCsZOtFdm8BwlcNX0jvNrXCeF3w8HUCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFBB2tNXTiEBez0K6wpOmsyhhW55VMB0GA1UdDgQWBBQQdrTV04hAXs9CusKTprMoYVueVTANBgkqhkiG9w0BAQsFAAOCAQEAimyeYIRO8Hs3DlGhD6NPeQPcW2OXvtIRha4//gGh5TPA+PFOpSbyKlH846TvWbjK2byKyoWETAzfdK2kAUV/Y1XLNCL1Ak3p9BxRr1JjVcfd+sSBPTa9M0nhHYyONFdagybK6tzmKGGlKjZBE7mucXBtZKN2JpFSZaimhULavycLiaiE+UbLNV7mEw8787qQfA9Lbyuw1jQzvHikL1XbHAXrbb8ZBffgOs9P5Jp2o97lnryUgBO55UiI8q9u7sXKM0B3pDgj3ACNblw2gS1G8JtAyTtINxcl8G452DijfhWKGBYIB1OdNPYAqgLiK0tAX7n/vlEaxtnbLzPyga1UxA==","attributes":{"enabled":true,"nbf":1603947544,"exp":1635484144,"created":1603948144,"updated":1603948144,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1603948142,"updated":1603948142}},"pending":{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending"}}' headers: cache-control: - no-cache @@ -3548,23 +3937,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:56 GMT + - Thu, 29 Oct 2020 05:09:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.21;act_addr_fam=InterNetwork; x-ms-keyvault-region: - - southcentralus + - eastasia x-ms-keyvault-service-version: - - 1.1.60.0 + - 1.2.58.0 x-powered-by: - ASP.NET status: @@ -3584,8 +3971,8 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -3594,7 +3981,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -3609,17 +3996,18 @@ interactions: cache-control: - no-cache content-length: - - '1034' + - '1028' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:56 GMT + - Thu, 29 Oct 2020 05:09:16 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3632,15 +4020,14 @@ interactions: code: 200 message: OK - request: - body: 'b''{"tags": {}, "properties": {"isPrimary": true, "vmInstanceCount": 5, - "dataDiskSizeGB": 100, "placementProperties": {}, "capacities": {}, "vmSize": - "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer", "vmImageOffer": - "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion": "latest", - "vmSecrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004"}, - "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e", + body: '{"tags": {}, "properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB": + 100, "placementProperties": {}, "capacities": {}, "vmSize": "Standard_D2", "vmImagePublisher": + "MicrosoftWindowsServer", "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", + "vmImageVersion": "latest", "vmSecrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004"}, + "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420", "certificateStore": "my"}]}], "vmExtensions": [{"name": "csetest", "properties": {"publisher": "Microsoft.Compute", "type": "BGInfo", "typeHandlerVersion": "2.1", - "autoUpgradeMinorVersion": true}}]}}''' + "autoUpgradeMinorVersion": true}}]}}' headers: Accept: - application/json @@ -3657,8 +4044,8 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -3667,7 +4054,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -3676,7 +4063,7 @@ interactions: \ \"capacities\": {},\r\n \"vmSecrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e\",\r\n + \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420\",\r\n \ \"certificateStore\": \"my\"\r\n }\r\n ]\r\n }\r\n \ ],\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \ \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n @@ -3685,23 +4072,24 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '1596' + - '1590' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:52:57 GMT + - Thu, 29 Oct 2020 05:09:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -3725,14 +4113,14 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\": - \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c5650001-0fdb-4218-9608-1f28378dd191\",\r\n \"startTime\": + \"2020-10-29T05:09:16.6545917Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3744,13 +4132,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:53:28 GMT + - Thu, 29 Oct 2020 05:09:46 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3776,14 +4165,14 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\": - \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c5650001-0fdb-4218-9608-1f28378dd191\",\r\n \"startTime\": + \"2020-10-29T05:09:16.6545917Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3795,13 +4184,66 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:53:59 GMT + - Thu, 29 Oct 2020 05:10:16 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type vm-secret add + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --source-vault-id --certificate-url --certificate-store + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"c5650001-0fdb-4218-9608-1f28378dd191\",\r\n \"startTime\": + \"2020-10-29T05:09:16.6545917Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:10: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: @@ -3827,14 +4269,14 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\": - \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c5650001-0fdb-4218-9608-1f28378dd191\",\r\n \"startTime\": + \"2020-10-29T05:09:16.6545917Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3846,13 +4288,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:54:28 GMT + - Thu, 29 Oct 2020 05:11:16 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3878,14 +4321,14 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\": - \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"c5650001-0fdb-4218-9608-1f28378dd191\",\r\n \"startTime\": + \"2020-10-29T05:09:16.6545917Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3897,13 +4340,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:54:58 GMT + - Thu, 29 Oct 2020 05:11:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3929,14 +4373,14 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/c5650001-0fdb-4218-9608-1f28378dd191?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\": - \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"2020-09-09T04:55:29.3284572Z\",\r\n + string: "{\r\n \"name\": \"c5650001-0fdb-4218-9608-1f28378dd191\",\r\n \"startTime\": + \"2020-10-29T05:09:16.6545917Z\",\r\n \"endTime\": \"2020-10-29T05:11:48.3375546Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3948,13 +4392,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:55:28 GMT + - Thu, 29 Oct 2020 05:12:17 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3980,15 +4425,15 @@ interactions: ParameterSetName: - -g -c -n --source-vault-id --certificate-url --certificate-store User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -3997,7 +4442,7 @@ interactions: \ \"capacities\": {},\r\n \"vmSecrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e\",\r\n + \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420\",\r\n \ \"certificateStore\": \"my\"\r\n }\r\n ]\r\n }\r\n \ ],\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \ \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n @@ -4008,17 +4453,18 @@ interactions: cache-control: - no-cache content-length: - - '1597' + - '1591' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:55:28 GMT + - Thu, 29 Oct 2020 05:12:18 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4044,8 +4490,8 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -4054,7 +4500,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -4063,7 +4509,7 @@ interactions: \ \"capacities\": {},\r\n \"vmSecrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e\",\r\n + \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/1b5e9f9db9404d2a909e64ff4a9d0420\",\r\n \ \"certificateStore\": \"my\"\r\n }\r\n ]\r\n }\r\n \ ],\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \ \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n @@ -4074,17 +4520,18 @@ interactions: cache-control: - no-cache content-length: - - '1597' + - '1591' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:55:29 GMT + - Thu, 29 Oct 2020 05:12:18 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4110,8 +4557,8 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -4120,13 +4567,13 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -4134,17 +4581,18 @@ interactions: cache-control: - no-cache content-length: - - '1092' + - '1080' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:55:30 GMT + - Thu, 29 Oct 2020 05:12:19 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4157,11 +4605,11 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"dnsName": "sfrp-cli-000002", + body: '{"location": "eastasia", "tags": {}, "properties": {"dnsName": "sfrp-cli-000002", "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName": "vmadmin", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}, {"isAdmin": false, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB7777"}], - "clusterCodeVersion": "7.1.458.9590"}, "sku": {"name": "Basic"}}' + "clusterCodeVersion": "7.1.456.9590"}, "sku": {"name": "Basic"}}' headers: Accept: - application/json @@ -4172,14 +4620,14 @@ interactions: Connection: - keep-alive Content-Length: - - '424' + - '418' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -4188,13 +4636,13 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": @@ -4202,23 +4650,23 @@ interactions: \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '1203' + - '1191' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:55:30 GMT + - Thu, 29 Oct 2020 05:12:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -4242,14 +4690,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4257,17 +4705,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:56:01 GMT + - Thu, 29 Oct 2020 05:12:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4293,14 +4742,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4308,17 +4757,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:56:31 GMT + - Thu, 29 Oct 2020 05:13:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4344,14 +4794,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4359,17 +4809,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:57:02 GMT + - Thu, 29 Oct 2020 05:13:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4395,14 +4846,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4410,17 +4861,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:57:32 GMT + - Thu, 29 Oct 2020 05:14:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4446,14 +4898,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4461,17 +4913,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:58:02 GMT + - Thu, 29 Oct 2020 05:14:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4497,14 +4950,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4512,17 +4965,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:58:31 GMT + - Thu, 29 Oct 2020 05:15:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4548,14 +5002,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4563,17 +5017,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:59:02 GMT + - Thu, 29 Oct 2020 05:15:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4599,14 +5054,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4614,17 +5069,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:59:32 GMT + - Thu, 29 Oct 2020 05:16:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4650,14 +5106,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4665,17 +5121,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:00:02 GMT + - Thu, 29 Oct 2020 05:16:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4701,14 +5158,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4716,17 +5173,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:00:32 GMT + - Thu, 29 Oct 2020 05:17:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4752,14 +5210,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4767,17 +5225,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:01:02 GMT + - Thu, 29 Oct 2020 05:17:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4803,14 +5262,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4818,17 +5277,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:01:32 GMT + - Thu, 29 Oct 2020 05:18:22 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4854,14 +5314,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4869,17 +5329,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:02:03 GMT + - Thu, 29 Oct 2020 05:18:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4905,14 +5366,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4920,17 +5381,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:02:33 GMT + - Thu, 29 Oct 2020 05:19:22 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4956,14 +5418,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4971,17 +5433,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:03:03 GMT + - Thu, 29 Oct 2020 05:19:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5007,14 +5470,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5022,17 +5485,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:03:33 GMT + - Thu, 29 Oct 2020 05:20:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5058,14 +5522,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5073,17 +5537,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:04:03 GMT + - Thu, 29 Oct 2020 05:20:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5109,14 +5574,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5124,17 +5589,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:04:33 GMT + - Thu, 29 Oct 2020 05:21:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5160,14 +5626,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5175,17 +5641,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:05:03 GMT + - Thu, 29 Oct 2020 05:21:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5211,14 +5678,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5226,17 +5693,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:05:34 GMT + - Thu, 29 Oct 2020 05:22:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5262,14 +5730,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5277,17 +5745,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:06:04 GMT + - Thu, 29 Oct 2020 05:22:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5313,14 +5782,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5328,17 +5797,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:06:34 GMT + - Thu, 29 Oct 2020 05:23:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5364,14 +5834,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5379,17 +5849,18 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:07:04 GMT + - Thu, 29 Oct 2020 05:23:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5415,32 +5886,33 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:07:34 GMT + - Thu, 29 Oct 2020 05:24:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5466,32 +5938,33 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:08:04 GMT + - Thu, 29 Oct 2020 05:24:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5517,32 +5990,33 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/58d40001-3673-4919-ac43-ea35b8141ed1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"58d40001-3673-4919-ac43-ea35b8141ed1\",\r\n \"startTime\": + \"2020-10-29T05:12:20.17413Z\",\r\n \"endTime\": \"2020-10-29T05:25:22.5957486Z\",\r\n + \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:08:34 GMT + - Thu, 29 Oct 2020 05:25:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5568,32 +6042,42 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": + \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": + 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n + \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n + \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": + \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": + \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '1192' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:09:04 GMT + - Thu, 29 Oct 2020 05:25:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5613,38 +6097,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster client-certificate add + - sf managed-cluster show Connection: - keep-alive ParameterSetName: - - -g -c --thumbprint + - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\": - \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"2020-09-09T05:09:27.9943724Z\",\r\n - \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": + \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": + 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n + \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n + \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": + \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": + \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '294' + - '1192' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:09:34 GMT + - Thu, 29 Oct 2020 05:25:26 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5664,27 +6160,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster client-certificate add + - sf managed-cluster client-certificate delete Connection: - keep-alive ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": @@ -5694,17 +6192,18 @@ interactions: cache-control: - no-cache content-length: - - '1204' + - '1192' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:09:35 GMT + - Thu, 29 Oct 2020 05:25:26 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5717,58 +6216,117 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastasia", "tags": {}, "properties": {"dnsName": "sfrp-cli-000002", + "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName": + "vmadmin", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}], + "clusterCodeVersion": "7.1.456.9590"}, "sku": {"name": "Basic"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster show + - sf managed-cluster client-certificate delete Connection: - keep-alive + Content-Length: + - '340' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -c + - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US - method: GET + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n - \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": - \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": - \"Succeeded\"\r\n }\r\n}" + \ }\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '1204' + - '1079' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:09:36 GMT + - Thu, 29 Oct 2020 05:25:27 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview pragma: - no-cache server: - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 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: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-cluster client-certificate delete + Connection: + - keep-alive + ParameterSetName: + - -g -c --thumbprint + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:25: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: @@ -5792,43 +6350,33 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": - \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": - 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n - \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n - \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": - \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": - \"Succeeded\"\r\n }\r\n}" + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1204' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:09:36 GMT + - Thu, 29 Oct 2020 05:26:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5841,10 +6389,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"dnsName": "sfrp-cli-000002", - "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName": - "vmadmin", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}], - "clusterCodeVersion": "7.1.458.9590"}, "sku": {"name": "Basic"}}' + body: null headers: Accept: - application/json @@ -5854,61 +6399,47 @@ interactions: - sf managed-cluster client-certificate delete Connection: - keep-alive - Content-Length: - - '346' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": - \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": - 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n - \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local cache-control: - no-cache content-length: - - '1091' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:09:36 GMT + - Thu, 29 Oct 2020 05:26:58 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5923,14 +6454,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5942,13 +6473,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:10:07 GMT + - Thu, 29 Oct 2020 05:27:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5974,14 +6506,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5993,13 +6525,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:10:37 GMT + - Thu, 29 Oct 2020 05:27:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6025,14 +6558,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6044,13 +6577,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:11:08 GMT + - Thu, 29 Oct 2020 05:28:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6076,14 +6610,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6095,13 +6629,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:11:37 GMT + - Thu, 29 Oct 2020 05:28:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6127,14 +6662,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6146,13 +6681,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:12:07 GMT + - Thu, 29 Oct 2020 05:29:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6178,14 +6714,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6197,13 +6733,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:12:38 GMT + - Thu, 29 Oct 2020 05:29:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6229,14 +6766,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6248,13 +6785,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:13:08 GMT + - Thu, 29 Oct 2020 05:30:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6280,14 +6818,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6299,13 +6837,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:13:38 GMT + - Thu, 29 Oct 2020 05:30:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6331,14 +6870,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6350,13 +6889,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:14:08 GMT + - Thu, 29 Oct 2020 05:31:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6382,14 +6922,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6401,13 +6941,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:14:39 GMT + - Thu, 29 Oct 2020 05:32:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6433,14 +6974,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6452,13 +6993,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:15:08 GMT + - Thu, 29 Oct 2020 05:32:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6484,14 +7026,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6503,13 +7045,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:15:39 GMT + - Thu, 29 Oct 2020 05:33:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6535,14 +7078,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6554,13 +7097,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:16:08 GMT + - Thu, 29 Oct 2020 05:33:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6586,14 +7130,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6605,13 +7149,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:16:38 GMT + - Thu, 29 Oct 2020 05:34:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6637,14 +7182,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6656,13 +7201,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:17:08 GMT + - Thu, 29 Oct 2020 05:34:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6688,14 +7234,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6707,13 +7253,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:17:39 GMT + - Thu, 29 Oct 2020 05:35:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6739,14 +7286,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6758,13 +7305,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:18:09 GMT + - Thu, 29 Oct 2020 05:35:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6790,14 +7338,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6809,13 +7357,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:18:39 GMT + - Thu, 29 Oct 2020 05:36:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6841,14 +7390,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6860,13 +7409,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:19:10 GMT + - Thu, 29 Oct 2020 05:36:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6892,15 +7442,15 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -6911,13 +7461,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:19:39 GMT + - Thu, 29 Oct 2020 05:37:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6943,15 +7494,15 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -6962,13 +7513,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:20:09 GMT + - Thu, 29 Oct 2020 05:37:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6994,14 +7546,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7013,13 +7565,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:20:39 GMT + - Thu, 29 Oct 2020 05:38:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7045,14 +7598,14 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/0b7c0001-b07e-435c-9b98-ec5b301f3245?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\": - \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"2020-09-09T05:21:10.0798786Z\",\r\n + string: "{\r\n \"name\": \"0b7c0001-b07e-435c-9b98-ec5b301f3245\",\r\n \"startTime\": + \"2020-10-29T05:25:27.7357034Z\",\r\n \"endTime\": \"2020-10-29T05:38:30.0010297Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7064,13 +7617,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:21:10 GMT + - Thu, 29 Oct 2020 05:38:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7096,21 +7650,21 @@ interactions: ParameterSetName: - -g -c --thumbprint User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -7118,17 +7672,18 @@ interactions: cache-control: - no-cache content-length: - - '1092' + - '1080' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:21:10 GMT + - Thu, 29 Oct 2020 05:38:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7154,8 +7709,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -7164,13 +7719,13 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\": - \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -7178,17 +7733,18 @@ interactions: cache-control: - no-cache content-length: - - '1092' + - '1080' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:21:11 GMT + - Thu, 29 Oct 2020 05:38:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7216,8 +7772,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: DELETE @@ -7226,34 +7782,34 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"fe28efd3-1b35-42e1-a6ba-6c7a0fce3a79\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\": + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"32F3955F6B0082E16944540D582EDE9359BAC088\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '1018' + - '1006' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:21:11 GMT + - Thu, 29 Oct 2020 05:38:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -7277,14 +7833,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7296,13 +7852,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:21:43 GMT + - Thu, 29 Oct 2020 05:39:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7328,14 +7885,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7347,13 +7904,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:22:13 GMT + - Thu, 29 Oct 2020 05:39:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7379,14 +7937,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7398,13 +7956,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:22:43 GMT + - Thu, 29 Oct 2020 05:40:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7430,14 +7989,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7449,13 +8008,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:23:12 GMT + - Thu, 29 Oct 2020 05:40:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7481,14 +8041,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7500,13 +8060,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:23:43 GMT + - Thu, 29 Oct 2020 05:41:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7532,14 +8093,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7551,13 +8112,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:24:13 GMT + - Thu, 29 Oct 2020 05:41:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7583,14 +8145,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7602,13 +8164,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:24:43 GMT + - Thu, 29 Oct 2020 05:42:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7634,14 +8197,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7653,13 +8216,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:25:13 GMT + - Thu, 29 Oct 2020 05:42:39 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7685,14 +8249,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7704,13 +8268,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:25:44 GMT + - Thu, 29 Oct 2020 05:43:09 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7736,14 +8301,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7755,13 +8320,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:26:14 GMT + - Thu, 29 Oct 2020 05:43:39 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7787,14 +8353,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7806,13 +8372,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:26:44 GMT + - Thu, 29 Oct 2020 05:44:09 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7838,14 +8405,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/ed660001-65fe-41ec-b23e-e27a4651da19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\": - \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"2020-09-09T05:27:13.6090611Z\",\r\n + string: "{\r\n \"name\": \"ed660001-65fe-41ec-b23e-e27a4651da19\",\r\n \"startTime\": + \"2020-10-29T05:38:35.2667391Z\",\r\n \"endTime\": \"2020-10-29T05:44:36.4452827Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7857,13 +8424,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 05:27:14 GMT + - Thu, 29 Oct 2020 05:44:39 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7889,8 +8457,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -7904,13 +8472,14 @@ interactions: content-length: - '0' date: - - Wed, 09 Sep 2020 05:27:15 GMT + - Thu, 29 Oct 2020 05:44:40 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml index df6e9028cc8..0adbde038b7 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:54 GMT + - Thu, 29 Oct 2020 05:52:09 GMT expires: - '-1' pragma: @@ -58,24 +58,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:54 GMT + - Thu, 29 Oct 2020 05:52:09 GMT expires: - '-1' pragma: @@ -103,24 +103,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:54 GMT + - Thu, 29 Oct 2020 05:52:10 GMT expires: - '-1' pragma: @@ -148,24 +148,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:54 GMT + - Thu, 29 Oct 2020 05:52:10 GMT expires: - '-1' pragma: @@ -193,24 +193,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:55 GMT + - Thu, 29 Oct 2020 05:52:11 GMT expires: - '-1' pragma: @@ -238,24 +238,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:54 GMT + - Thu, 29 Oct 2020 05:52:10 GMT expires: - '-1' pragma: @@ -283,24 +283,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:55 GMT + - Thu, 29 Oct 2020 05:52:11 GMT expires: - '-1' pragma: @@ -328,24 +328,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:56 GMT + - Thu, 29 Oct 2020 05:52:12 GMT expires: - '-1' pragma: @@ -373,24 +373,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:56 GMT + - Thu, 29 Oct 2020 05:52:12 GMT expires: - '-1' pragma: @@ -418,24 +418,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:55 GMT + - Thu, 29 Oct 2020 05:52:13 GMT expires: - '-1' pragma: @@ -463,24 +463,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:56 GMT + - Thu, 29 Oct 2020 05:52:12 GMT expires: - '-1' pragma: @@ -508,24 +508,24 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-10-29T05:52:07Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '471' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:56 GMT + - Thu, 29 Oct 2020 05:52:13 GMT expires: - '-1' pragma: @@ -540,10 +540,10 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "properties": {"dnsName": "sfrp-cli-000002", - "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName": - "vmadmin", "adminPassword": "Pass@000003", "clients": [{"isAdmin": true, "thumbprint": - "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, "sku": {"name": "Standard"}}' + body: '{"location": "eastasia", "properties": {"dnsName": "sfrp-cli-000002", "clientConnectionPort": + 19000, "httpGatewayConnectionPort": 19080, "adminUserName": "vmadmin", "adminPassword": + "Pass@000003", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, + "sku": {"name": "Standard"}}' headers: Accept: - application/json @@ -554,14 +554,14 @@ interactions: Connection: - keep-alive Content-Length: - - '329' + - '323' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -570,9 +570,9 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b2c73fcc-1a30-466a-8403-768b2d71f540\",\r\n \"clusterUpgradeCadence\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"a4a9c001-f269-4d7b-a8ea-caa31597410c\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n @@ -580,21 +580,21 @@ interactions: \ ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '865' + - '859' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:14:58 GMT + - Thu, 29 Oct 2020 05:52:19 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -604,7 +604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -622,14 +622,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"3d7f0002-d55c-45c2-af83-5f06b2230e19\",\r\n \"startTime\": + \"2020-10-29T05:52:19.1589265Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -641,13 +641,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:15:29 GMT + - Thu, 29 Oct 2020 05:52:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -673,14 +674,14 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"3d7f0002-d55c-45c2-af83-5f06b2230e19\",\r\n \"startTime\": + \"2020-10-29T05:52:19.1589265Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -692,13 +693,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:15:59 GMT + - Thu, 29 Oct 2020 05:53:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -724,15 +726,15 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"3d7f0002-d55c-45c2-af83-5f06b2230e19\",\r\n \"startTime\": + \"2020-10-29T05:52:19.1589265Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -743,13 +745,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:16:28 GMT + - Thu, 29 Oct 2020 05:53:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -775,15 +778,15 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"3d7f0002-d55c-45c2-af83-5f06b2230e19\",\r\n \"startTime\": + \"2020-10-29T05:52:19.1589265Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -794,13 +797,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:16:58 GMT + - Thu, 29 Oct 2020 05:54:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -826,15 +830,15 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"3d7f0002-d55c-45c2-af83-5f06b2230e19\",\r\n \"startTime\": + \"2020-10-29T05:52:19.1589265Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -845,13 +849,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:17:28 GMT + - Thu, 29 Oct 2020 05:54:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -877,32 +882,33 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/3d7f0002-d55c-45c2-af83-5f06b2230e19?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"3d7f0002-d55c-45c2-af83-5f06b2230e19\",\r\n \"startTime\": + \"2020-10-29T05:52:19.1589265Z\",\r\n \"endTime\": \"2020-10-29T05:54:59.8275345Z\",\r\n + \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '294' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:17:59 GMT + - Thu, 29 Oct 2020 05:55:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -928,32 +934,161 @@ interactions: ParameterSetName: - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\": - \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"2020-09-09T03:18:10.5920005Z\",\r\n - \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"a4a9c001-f269-4d7b-a8ea-caa31597410c\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n + \ \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n + \ \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n + \ \"clusterCertificateThumbprint\": \"407BE4E8AB1340D46676ABD0F6511D35BE286FE6\",\r\n + \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": + 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n + \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n + \ ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1050' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:55: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 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB": + 100, "vmSize": "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer", + "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion": + "latest"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + Content-Length: + - '245' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n + \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": + \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": + \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": + 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n + \ \"capacities\": {}\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 05:55: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-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count --primary + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '294' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:18:29 GMT + - Thu, 29 Oct 2020 05:55:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -973,45 +1108,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster create + - sf managed-node-type create Connection: - keep-alive ParameterSetName: - - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku + - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b2c73fcc-1a30-466a-8403-768b2d71f540\",\r\n \"clusterState\": - \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": - \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n - \ \"clusterCertificateThumbprint\": \"E387BCB4B8B3C99781A43EEEB5427198650E109A\",\r\n - \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": - 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n - \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n - \ ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1062' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:18:29 GMT + - Thu, 29 Oct 2020 05:56:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1024,10 +1153,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB": - 100, "vmSize": "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer", - "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion": - "latest"}}' + body: null headers: Accept: - application/json @@ -1037,47 +1163,36 @@ interactions: - sf managed-node-type create Connection: - keep-alive - Content-Length: - - '245' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n - \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": - \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": - \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": - 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n - \ \"capacities\": {}\r\n }\r\n}" + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local cache-control: - no-cache content-length: - - '763' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:18:30 GMT + - Thu, 29 Oct 2020 05:56:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1086,8 +1201,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1105,15 +1218,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1124,13 +1237,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:19:01 GMT + - Thu, 29 Oct 2020 05:57:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1156,15 +1270,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1175,13 +1289,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:19:31 GMT + - Thu, 29 Oct 2020 05:57:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1207,15 +1322,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -1226,13 +1341,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:20:01 GMT + - Thu, 29 Oct 2020 05:58:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1258,14 +1374,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1277,13 +1393,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:20:31 GMT + - Thu, 29 Oct 2020 05:58:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1309,14 +1426,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1328,13 +1445,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:21:01 GMT + - Thu, 29 Oct 2020 05:59:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1360,14 +1478,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1379,13 +1497,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:21:32 GMT + - Thu, 29 Oct 2020 05:59:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1411,14 +1530,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1430,13 +1549,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:22:02 GMT + - Thu, 29 Oct 2020 06:00:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1462,14 +1582,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1481,13 +1601,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:22:32 GMT + - Thu, 29 Oct 2020 06:00:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1513,14 +1634,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1532,13 +1653,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:23:01 GMT + - Thu, 29 Oct 2020 06:01:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1564,14 +1686,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1583,13 +1705,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:23:31 GMT + - Thu, 29 Oct 2020 06:01:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1615,14 +1738,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1634,13 +1757,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:24:02 GMT + - Thu, 29 Oct 2020 06:02:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1666,14 +1790,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1685,13 +1809,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:24:32 GMT + - Thu, 29 Oct 2020 06:02:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1717,14 +1842,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/8e330002-3bec-46a0-8399-bf9ad21f96b1?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\": - \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"2020-09-09T03:25:02.7921758Z\",\r\n + string: "{\r\n \"name\": \"8e330002-3bec-46a0-8399-bf9ad21f96b1\",\r\n \"startTime\": + \"2020-10-29T05:55:23.2144965Z\",\r\n \"endTime\": \"2020-10-29T06:03:25.6747129Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1736,13 +1861,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:25:02 GMT + - Thu, 29 Oct 2020 06:03:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1768,15 +1894,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count --primary User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1787,17 +1913,18 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:25:02 GMT + - Thu, 29 Oct 2020 06:03:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1823,8 +1950,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -1833,7 +1960,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n - \ \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": + \ \"location\": \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n @@ -1844,17 +1971,18 @@ interactions: cache-control: - no-cache content-length: - - '869' + - '863' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:25:03 GMT + - Thu, 29 Oct 2020 06:03:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1887,8 +2015,8 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: PUT @@ -1897,7 +2025,7 @@ interactions: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": false,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -1906,21 +2034,22 @@ interactions: \ \"capacities\": {}\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '764' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:25:03 GMT + - Thu, 29 Oct 2020 06:03:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1948,14 +2077,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -1967,13 +2096,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:25:34 GMT + - Thu, 29 Oct 2020 06:03:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1999,14 +2129,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2018,13 +2148,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:26:04 GMT + - Thu, 29 Oct 2020 06:04:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2050,14 +2181,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2069,13 +2200,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:26:34 GMT + - Thu, 29 Oct 2020 06:04:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2101,14 +2233,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2120,13 +2252,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:27:05 GMT + - Thu, 29 Oct 2020 06:05:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2152,14 +2285,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2171,13 +2304,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:27:35 GMT + - Thu, 29 Oct 2020 06:05:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2203,14 +2337,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2222,13 +2356,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:28:05 GMT + - Thu, 29 Oct 2020 06:06:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2254,14 +2389,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2273,13 +2408,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:28:35 GMT + - Thu, 29 Oct 2020 06:06:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2305,14 +2441,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2324,13 +2460,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:29:04 GMT + - Thu, 29 Oct 2020 06:07:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2356,14 +2493,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2375,13 +2512,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:29:34 GMT + - Thu, 29 Oct 2020 06:07:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2407,14 +2545,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2426,13 +2564,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:30:05 GMT + - Thu, 29 Oct 2020 06:08:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2458,14 +2597,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2477,13 +2616,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:30:35 GMT + - Thu, 29 Oct 2020 06:08:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2509,14 +2649,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2528,13 +2668,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:31:05 GMT + - Thu, 29 Oct 2020 06:09:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2560,14 +2701,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2579,13 +2720,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:31:35 GMT + - Thu, 29 Oct 2020 06:10:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2611,14 +2753,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2630,13 +2772,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:32:05 GMT + - Thu, 29 Oct 2020 06:10:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2662,14 +2805,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2681,13 +2824,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:32:35 GMT + - Thu, 29 Oct 2020 06:11:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2713,15 +2857,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -2732,13 +2876,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:33:06 GMT + - Thu, 29 Oct 2020 06:11:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2764,15 +2909,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -2783,13 +2928,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:33:36 GMT + - Thu, 29 Oct 2020 06:12:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2815,14 +2961,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2834,13 +2980,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:34:06 GMT + - Thu, 29 Oct 2020 06:12:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2866,14 +3013,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2885,13 +3032,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:34:36 GMT + - Thu, 29 Oct 2020 06:13:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2917,14 +3065,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2936,13 +3084,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:35:06 GMT + - Thu, 29 Oct 2020 06:13:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2968,14 +3117,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -2987,13 +3136,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:35:36 GMT + - Thu, 29 Oct 2020 06:14:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3019,14 +3169,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3038,13 +3188,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:36:06 GMT + - Thu, 29 Oct 2020 06:14:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3070,14 +3221,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3089,13 +3240,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:36:36 GMT + - Thu, 29 Oct 2020 06:15:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3121,14 +3273,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3140,13 +3292,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:37:06 GMT + - Thu, 29 Oct 2020 06:15:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3172,14 +3325,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3191,13 +3344,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:37:36 GMT + - Thu, 29 Oct 2020 06:16:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3223,14 +3377,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3242,13 +3396,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:38:06 GMT + - Thu, 29 Oct 2020 06:16:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3274,14 +3429,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3293,13 +3448,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:38:37 GMT + - Thu, 29 Oct 2020 06:17:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3325,14 +3481,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3344,13 +3500,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:39:07 GMT + - Thu, 29 Oct 2020 06:17:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3376,14 +3533,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3395,13 +3552,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:39:37 GMT + - Thu, 29 Oct 2020 06:18:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3427,14 +3585,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3446,13 +3604,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:40:07 GMT + - Thu, 29 Oct 2020 06:18:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3478,14 +3637,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3497,13 +3656,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:40:38 GMT + - Thu, 29 Oct 2020 06:19:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3529,14 +3689,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3548,13 +3708,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:41:08 GMT + - Thu, 29 Oct 2020 06:19:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3580,14 +3741,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3599,13 +3760,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:41:38 GMT + - Thu, 29 Oct 2020 06:20:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3631,14 +3793,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3650,13 +3812,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:42:08 GMT + - Thu, 29 Oct 2020 06:20:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3682,14 +3845,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3701,13 +3864,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:42:38 GMT + - Thu, 29 Oct 2020 06:21:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3733,14 +3897,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3752,13 +3916,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:43:07 GMT + - Thu, 29 Oct 2020 06:21:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3784,14 +3949,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3803,13 +3968,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:43:38 GMT + - Thu, 29 Oct 2020 06:22:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3835,14 +4001,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3854,13 +4020,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:44:08 GMT + - Thu, 29 Oct 2020 06:22:35 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3886,14 +4053,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -3905,13 +4072,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:44:38 GMT + - Thu, 29 Oct 2020 06:23:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3937,15 +4105,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -3956,13 +4124,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:45:08 GMT + - Thu, 29 Oct 2020 06:23:35 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3988,15 +4157,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -4007,13 +4176,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:45:38 GMT + - Thu, 29 Oct 2020 06:24:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4039,14 +4209,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4058,13 +4228,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:46:09 GMT + - Thu, 29 Oct 2020 06:24:35 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4090,15 +4261,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: @@ -4109,13 +4280,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:46:39 GMT + - Thu, 29 Oct 2020 06:25:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4141,14 +4313,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4160,13 +4332,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:47:09 GMT + - Thu, 29 Oct 2020 06:25:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4192,14 +4365,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4211,13 +4384,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:47:39 GMT + - Thu, 29 Oct 2020 06:26:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4243,14 +4417,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4262,13 +4436,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:48:09 GMT + - Thu, 29 Oct 2020 06:26:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4294,14 +4469,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4313,13 +4488,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:48:39 GMT + - Thu, 29 Oct 2020 06:27:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4345,14 +4521,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4364,13 +4540,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:49:09 GMT + - Thu, 29 Oct 2020 06:27:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4396,14 +4573,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4415,13 +4592,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:49:39 GMT + - Thu, 29 Oct 2020 06:28:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4447,14 +4625,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4466,13 +4644,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:50:10 GMT + - Thu, 29 Oct 2020 06:28:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4498,14 +4677,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4517,13 +4696,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:50:40 GMT + - Thu, 29 Oct 2020 06:29:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4549,14 +4729,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4568,13 +4748,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:51:10 GMT + - Thu, 29 Oct 2020 06:29:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4600,14 +4781,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4619,13 +4800,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:51:40 GMT + - Thu, 29 Oct 2020 06:30:07 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4651,14 +4833,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4670,13 +4852,274 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:52:10 GMT + - Thu, 29 Oct 2020 06:30:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 06:31: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 06:31: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 06:32: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 06:32: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type create + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --instance-count + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 06:33: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: @@ -4702,14 +5145,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4721,13 +5164,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:52:40 GMT + - Thu, 29 Oct 2020 06:33:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4753,14 +5197,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4772,13 +5216,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:53:10 GMT + - Thu, 29 Oct 2020 06:34:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4804,14 +5249,14 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/7f7e0002-62af-4ed0-b5c0-ada4a6c70070?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\": - \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"2020-09-09T03:53:35.8321069Z\",\r\n + string: "{\r\n \"name\": \"7f7e0002-62af-4ed0-b5c0-ada4a6c70070\",\r\n \"startTime\": + \"2020-10-29T06:03:28.4247418Z\",\r\n \"endTime\": \"2020-10-29T06:34:18.4471312Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -4823,13 +5268,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:53:40 GMT + - Thu, 29 Oct 2020 06:34:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4855,15 +5301,15 @@ interactions: ParameterSetName: - -g -c -n --instance-count User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview response: body: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": + \"eastasia\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": false,\r\n \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": @@ -4874,17 +5320,18 @@ interactions: cache-control: - no-cache content-length: - - '765' + - '759' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:53:41 GMT + - Thu, 29 Oct 2020 06:34:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4910,8 +5357,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -4920,7 +5367,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n - \ \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": + \ \"location\": \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n @@ -4929,7 +5376,7 @@ interactions: {},\r\n \"capacities\": {}\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n - \ \"location\": \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": + \ \"location\": \"eastasia\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n @@ -4940,17 +5387,18 @@ interactions: cache-control: - no-cache content-length: - - '1717' + - '1705' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:53:41 GMT + - Thu, 29 Oct 2020 06:34:42 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4980,8 +5428,8 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -4991,7 +5439,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -4999,21 +5447,22 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:53:42 GMT + - Thu, 29 Oct 2020 06:34:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -5031,14 +5480,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5046,17 +5495,18 @@ interactions: cache-control: - no-cache content-length: - - '281' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:54:13 GMT + - Thu, 29 Oct 2020 06:35:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5082,14 +5532,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5097,17 +5547,18 @@ interactions: cache-control: - no-cache content-length: - - '281' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:54:42 GMT + - Thu, 29 Oct 2020 06:35:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5133,32 +5584,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '280' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:55:12 GMT + - Thu, 29 Oct 2020 06:36:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5184,32 +5636,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:55:45 GMT + - Thu, 29 Oct 2020 06:36:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5235,32 +5688,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:56:15 GMT + - Thu, 29 Oct 2020 06:37:14 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5286,32 +5740,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:56:45 GMT + - Thu, 29 Oct 2020 06:37:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5337,32 +5792,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:57:15 GMT + - Thu, 29 Oct 2020 06:38:14 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5388,32 +5844,85 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:57:45 GMT + - Thu, 29 Oct 2020 06:38:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf managed-node-type node restart + Connection: + - keep-alive + ParameterSetName: + - -g -c -n --node-name + User-Agent: + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview + response: + body: + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Oct 2020 06:39: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: @@ -5439,14 +5948,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\": - \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"2020-09-09T03:58:13.6646274Z\",\r\n + string: "{\r\n \"name\": \"687f0002-39b6-4da9-8152-c5af8a1a2da8\",\r\n \"startTime\": + \"2020-10-29T06:34:43.711444Z\",\r\n \"endTime\": \"2020-10-29T06:39:44.8645687Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5454,17 +5963,18 @@ interactions: cache-control: - no-cache content-length: - - '294' + - '293' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:58:15 GMT + - Thu, 29 Oct 2020 06:39:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5490,10 +6000,10 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/687f0002-39b6-4da9-8152-c5af8a1a2da8?api-version=2020-01-01-preview response: body: string: '' @@ -5501,13 +6011,14 @@ interactions: cache-control: - no-cache date: - - Wed, 09 Sep 2020 03:58:16 GMT + - Thu, 29 Oct 2020 06:39:45 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -5533,8 +6044,8 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -5544,7 +6055,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -5552,15 +6063,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:58:16 GMT + - Thu, 29 Oct 2020 06:39:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -5584,14 +6096,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\": - \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"a36e0002-d1b3-4218-9c4f-cd115623ed76\",\r\n \"startTime\": + \"2020-10-29T06:39:46.7708897Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5603,13 +6115,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:58:46 GMT + - Thu, 29 Oct 2020 06:40:17 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5635,14 +6148,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\": - \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"a36e0002-d1b3-4218-9c4f-cd115623ed76\",\r\n \"startTime\": + \"2020-10-29T06:39:46.7708897Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5654,13 +6167,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:59:16 GMT + - Thu, 29 Oct 2020 06:40:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5686,14 +6200,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\": - \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"a36e0002-d1b3-4218-9c4f-cd115623ed76\",\r\n \"startTime\": + \"2020-10-29T06:39:46.7708897Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5705,13 +6219,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 03:59:47 GMT + - Thu, 29 Oct 2020 06:41:17 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5737,14 +6252,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\": - \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"2020-09-09T04:00:17.1666374Z\",\r\n + string: "{\r\n \"name\": \"a36e0002-d1b3-4218-9c4f-cd115623ed76\",\r\n \"startTime\": + \"2020-10-29T06:39:46.7708897Z\",\r\n \"endTime\": \"2020-10-29T06:41:47.3619119Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5756,13 +6271,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:00:17 GMT + - Thu, 29 Oct 2020 06:41:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5788,10 +6304,10 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/a36e0002-d1b3-4218-9c4f-cd115623ed76?api-version=2020-01-01-preview response: body: string: '' @@ -5799,13 +6315,14 @@ interactions: cache-control: - no-cache date: - - Wed, 09 Sep 2020 04:00:17 GMT + - Thu, 29 Oct 2020 06:41:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -5831,8 +6348,8 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -5842,7 +6359,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -5850,15 +6367,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:00:17 GMT + - Thu, 29 Oct 2020 06:41:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -5882,14 +6400,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5901,13 +6419,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:00:47 GMT + - Thu, 29 Oct 2020 06:42:19 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5933,14 +6452,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -5952,13 +6471,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:01:17 GMT + - Thu, 29 Oct 2020 06:42:49 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5984,14 +6504,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6003,13 +6523,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:01:48 GMT + - Thu, 29 Oct 2020 06:43:19 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6035,14 +6556,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6054,13 +6575,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:02:18 GMT + - Thu, 29 Oct 2020 06:43:49 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6086,14 +6608,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6105,13 +6627,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:02:48 GMT + - Thu, 29 Oct 2020 06:44:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6137,14 +6660,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6156,13 +6679,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:03:18 GMT + - Thu, 29 Oct 2020 06:44:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6188,14 +6712,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6207,13 +6731,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:03:49 GMT + - Thu, 29 Oct 2020 06:45:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6239,14 +6764,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6258,13 +6783,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:04:19 GMT + - Thu, 29 Oct 2020 06:45:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6290,14 +6816,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6309,13 +6835,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:04:49 GMT + - Thu, 29 Oct 2020 06:46:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6341,14 +6868,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6360,13 +6887,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:05:19 GMT + - Thu, 29 Oct 2020 06:46:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6392,14 +6920,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6411,13 +6939,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:05:48 GMT + - Thu, 29 Oct 2020 06:47:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6443,14 +6972,14 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6462,13 +6991,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:06:19 GMT + - Thu, 29 Oct 2020 06:47:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6494,32 +7024,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:06:49 GMT + - Thu, 29 Oct 2020 06:48:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6545,32 +7076,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:07:19 GMT + - Thu, 29 Oct 2020 06:48:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6596,32 +7128,33 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\": - \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"2020-09-09T04:07:49.2568209Z\",\r\n - \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '294' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:07:49 GMT + - Thu, 29 Oct 2020 06:49:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6647,31 +7180,44 @@ interactions: ParameterSetName: - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: '' + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: cache-control: - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:07:49 GMT + - Thu, 29 Oct 2020 06:49:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -6680,59 +7226,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-node-type delete + - sf managed-node-type node reimage Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -c -n + - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"provisioningState\": \"Deleting\",\r\n \"isPrimary\": false,\r\n - \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": - \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": - \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": - 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n - \ \"capacities\": {}\r\n }\r\n}" + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local cache-control: - no-cache content-length: - - '764' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:07:51 GMT + - Thu, 29 Oct 2020 06:50:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6741,38 +7278,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-node-type delete + - sf managed-node-type node reimage Connection: - keep-alive ParameterSetName: - - -g -c -n + - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '280' + - '282' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:08:22 GMT + - Thu, 29 Oct 2020 06:50:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6792,38 +7330,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-node-type delete + - sf managed-node-type node reimage Connection: - keep-alive ParameterSetName: - - -g -c -n + - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"77ab0002-6e00-4a64-a15d-0444a096e3f5\",\r\n \"startTime\": + \"2020-10-29T06:41:49.2069368Z\",\r\n \"endTime\": \"2020-10-29T06:51:20.6935281Z\",\r\n + \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '280' + - '294' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:08:52 GMT + - Thu, 29 Oct 2020 06:51:22 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6843,49 +7382,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-node-type delete + - sf managed-node-type node reimage Connection: - keep-alive ParameterSetName: - - -g -c -n + - -g -c -n --node-name User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/77ab0002-6e00-4a64-a15d-0444a096e3f5?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: '' headers: cache-control: - no-cache - content-length: - - '280' - content-type: - - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:09:23 GMT + - Thu, 29 Oct 2020 06:51:22 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -6897,46 +7425,57 @@ interactions: - sf managed-node-type delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": + \"eastasia\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"provisioningState\": \"Deleting\",\r\n \"isPrimary\": false,\r\n + \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": + \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": + \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": + 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n + \ \"capacities\": {}\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '280' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:09:53 GMT + - Thu, 29 Oct 2020 06:51:23 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6951,14 +7490,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -6966,17 +7505,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:10:23 GMT + - Thu, 29 Oct 2020 06:51:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7002,14 +7542,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7017,17 +7557,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:10:52 GMT + - Thu, 29 Oct 2020 06:52:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7053,14 +7594,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7068,17 +7609,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:11:23 GMT + - Thu, 29 Oct 2020 06:52:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7104,14 +7646,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7119,17 +7661,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:11:53 GMT + - Thu, 29 Oct 2020 06:53:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7155,14 +7698,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7170,17 +7713,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:12:23 GMT + - Thu, 29 Oct 2020 06:53:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7206,14 +7750,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7221,17 +7765,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:12:53 GMT + - Thu, 29 Oct 2020 06:54:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7257,14 +7802,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7272,17 +7817,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:13:23 GMT + - Thu, 29 Oct 2020 06:54:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7308,14 +7854,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7323,17 +7869,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:13:54 GMT + - Thu, 29 Oct 2020 06:55:25 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7359,14 +7906,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7374,17 +7921,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:14:24 GMT + - Thu, 29 Oct 2020 06:55:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7410,14 +7958,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7425,17 +7973,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:14:54 GMT + - Thu, 29 Oct 2020 06:56:26 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7461,14 +8010,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7476,17 +8025,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:15:24 GMT + - Thu, 29 Oct 2020 06:56:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7512,14 +8062,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7527,17 +8077,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:15:54 GMT + - Thu, 29 Oct 2020 06:57:26 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7563,14 +8114,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7578,17 +8129,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:16:25 GMT + - Thu, 29 Oct 2020 06:57:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7614,14 +8166,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7629,17 +8181,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:16:55 GMT + - Thu, 29 Oct 2020 06:58:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7665,14 +8218,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7680,17 +8233,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:17:25 GMT + - Thu, 29 Oct 2020 06:58:57 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7716,14 +8270,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7731,17 +8285,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:17:55 GMT + - Thu, 29 Oct 2020 06:59:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7767,14 +8322,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7782,17 +8337,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:18:25 GMT + - Thu, 29 Oct 2020 06:59:57 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7818,14 +8374,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7833,17 +8389,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:18:54 GMT + - Thu, 29 Oct 2020 07:00:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7869,14 +8426,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7884,17 +8441,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:19:24 GMT + - Thu, 29 Oct 2020 07:00:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7920,14 +8478,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7935,17 +8493,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:19:55 GMT + - Thu, 29 Oct 2020 07:01:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7971,14 +8530,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -7986,17 +8545,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:20:25 GMT + - Thu, 29 Oct 2020 07:01:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8022,14 +8582,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8037,17 +8597,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:20:55 GMT + - Thu, 29 Oct 2020 07:02:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8073,14 +8634,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8088,17 +8649,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:21:25 GMT + - Thu, 29 Oct 2020 07:02:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8124,14 +8686,14 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8139,17 +8701,18 @@ interactions: cache-control: - no-cache content-length: - - '280' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:21:56 GMT + - Thu, 29 Oct 2020 07:03:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8175,32 +8738,33 @@ interactions: ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\": - \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"2020-09-09T04:22:23.7901445Z\",\r\n - \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '293' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:22:26 GMT + - Thu, 29 Oct 2020 07:03:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8220,44 +8784,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-node-type show + - sf managed-node-type delete Connection: - keep-alive ParameterSetName: - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: '{"error":{"code":"NotFound","message":"GetEntityFromTable: the NodeTypeData - b2c73fcc-1a30-466a-8403-768b2d71f540_snt could not be found."}}' + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '139' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:22:27 GMT + - Thu, 29 Oct 2020 07:04:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -8266,44 +8836,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-node-type list + - sf managed-node-type delete Connection: - keep-alive ParameterSetName: - - -g -c + - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n - \ \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": - {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n - \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n - \ \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n - \ \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": - {},\r\n \"capacities\": {}\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '869' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:22:27 GMT + - Thu, 29 Oct 2020 07:04:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8323,61 +8888,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster delete + - sf managed-node-type delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -c + - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n - \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": - \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n - \ \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"clusterId\": \"b2c73fcc-1a30-466a-8403-768b2d71f540\",\r\n \"clusterUpgradeCadence\": - \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n - \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": - \"E387BCB4B8B3C99781A43EEEB5427198650E109A\",\r\n \"clientConnectionPort\": - 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n - \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n - \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}" + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": + {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": + []\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local cache-control: - no-cache content-length: - - '1021' + - '281' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:22:27 GMT + - Thu, 29 Oct 2020 07:05:29 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8386,38 +8940,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster delete + - sf managed-node-type delete Connection: - keep-alive ParameterSetName: - - -g -c + - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/88f60002-8388-442b-86e8-5878b2aa1c77?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": + string: "{\r\n \"name\": \"88f60002-8388-442b-86e8-5878b2aa1c77\",\r\n \"startTime\": + \"2020-10-29T06:51:24.4807433Z\",\r\n \"endTime\": \"2020-10-29T07:05:56.1393202Z\",\r\n + \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '294' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:22:58 GMT + - Thu, 29 Oct 2020 07:05:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8437,49 +8992,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster delete + - sf managed-node-type show Connection: - keep-alive ParameterSetName: - - -g -c + - -g -c -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: '{"error":{"code":"NotFound","message":"GetEntityFromTable: the NodeTypeData + a4a9c001-f269-4d7b-a8ea-caa31597410c_snt could not be found."}}' headers: cache-control: - no-cache content-length: - - '282' + - '139' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:23:28 GMT + - Thu, 29 Oct 2020 07:06:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.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 status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -8488,38 +9039,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf managed-cluster delete + - sf managed-node-type list Connection: - keep-alive ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n + \ \"location\": \"eastasia\",\r\n \"name\": \"pnt\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n + \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n + \ \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": + {},\r\n \"capacities\": {}\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '282' + - '863' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:23:58 GMT + - Thu, 29 Oct 2020 07:06:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8542,46 +9100,58 @@ interactions: - sf managed-cluster delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": - {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": - []\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n + \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": + \"eastasia\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": + \"a4a9c001-f269-4d7b-a8ea-caa31597410c\",\r\n \"clusterUpgradeCadence\": + \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n + \ \"fqdn\": \"sfrp-cli-000002.eastasia.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": + \"407BE4E8AB1340D46676ABD0F6511D35BE286FE6\",\r\n \"clientConnectionPort\": + 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n + \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n + \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '282' + - '1009' content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:24:28 GMT + - Thu, 29 Oct 2020 07:06:02 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperationresults/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview pragma: - no-cache server: - Microsoft-HTTPAPI/2.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-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8596,14 +9166,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8615,13 +9185,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:24:58 GMT + - Thu, 29 Oct 2020 07:06:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8647,14 +9218,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8666,13 +9237,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:25:28 GMT + - Thu, 29 Oct 2020 07:07:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8698,14 +9270,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8717,13 +9289,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:25:58 GMT + - Thu, 29 Oct 2020 07:07:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8749,14 +9322,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8768,13 +9341,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:26:28 GMT + - Thu, 29 Oct 2020 07:08:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8800,14 +9374,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8819,13 +9393,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:26:59 GMT + - Thu, 29 Oct 2020 07:08:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8851,14 +9426,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8870,13 +9445,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:27:29 GMT + - Thu, 29 Oct 2020 07:09:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8902,14 +9478,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8921,13 +9497,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:27:59 GMT + - Thu, 29 Oct 2020 07:09:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -8953,14 +9530,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -8972,13 +9549,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:28:29 GMT + - Thu, 29 Oct 2020 07:10:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -9004,14 +9582,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -9023,13 +9601,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:28:59 GMT + - Thu, 29 Oct 2020 07:10:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -9055,14 +9634,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -9074,13 +9653,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:29:30 GMT + - Thu, 29 Oct 2020 07:11:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -9106,14 +9686,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -9125,13 +9705,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:30:00 GMT + - Thu, 29 Oct 2020 07:11:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -9157,14 +9738,14 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastasia/managedclusteroperations/b8220002-d80f-4798-96be-0f71757f0034?api-version=2020-01-01-preview response: body: - string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\": - \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"2020-09-09T04:30:29.7738818Z\",\r\n + string: "{\r\n \"name\": \"b8220002-d80f-4798-96be-0f71757f0034\",\r\n \"startTime\": + \"2020-10-29T07:06:03.0155309Z\",\r\n \"endTime\": \"2020-10-29T07:12:04.8371945Z\",\r\n \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}" @@ -9176,13 +9757,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 09 Sep 2020 04:30:29 GMT + - Thu, 29 Oct 2020 07:12:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -9208,8 +9790,8 @@ interactions: ParameterSetName: - -g -c User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0 - Azure-SDK-For-Python AZURECLI/2.9.1 + - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: GET @@ -9223,13 +9805,14 @@ interactions: content-length: - '0' date: - - Wed, 09 Sep 2020 04:30:31 GMT + - Thu, 29 Oct 2020 07:12:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_managed_cluster.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_managed_cluster.py index d628a2655de..075926118ac 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_managed_cluster.py +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_managed_cluster.py @@ -18,7 +18,7 @@ class ServiceFabricManagedClustersTests(ScenarioTest): def test_basic_cluster(self): self.kwargs.update({ 'cert_tp': '123BDACDCDFB2C7B250192C6078E47D1E1DB119B', - 'loc': 'southcentralus', + 'loc': 'eastasia', 'cluster_name': self.create_random_name('sfrp-cli-', 24), 'vm_password': self.create_random_name('Pass@', 9) }) @@ -47,7 +47,7 @@ def test_basic_cluster(self): def test_node_type_operation(self): self.kwargs.update({ 'cert_tp': '123BDACDCDFB2C7B250192C6078E47D1E1DB119B', - 'loc': 'southcentralus', + 'loc': 'eastasia', 'cluster_name': self.create_random_name('sfrp-cli-', 24), 'vm_password': self.create_random_name('Pass@', 9) }) @@ -94,7 +94,7 @@ def test_cert_and_ext(self): self.kwargs.update({ 'cert_tp': '123BDACDCDFB2C7B250192C6078E47D1E1DB119B', 'cert_tp2': '123BDACDCDFB2C7B250192C6078E47D1E1DB7777', - 'loc': 'southcentralus', + 'loc': 'eastasia', 'cluster_name': self.create_random_name('sfrp-cli-', 24), 'vm_password': self.create_random_name('Pass@', 9), 'extName': 'csetest', diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index 0297b54509c..7254f045fc9 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1098,11 +1098,11 @@ You can configure the --public-access using `az storage container set-permission -n CONTAINER_NAME --public-access blob/container/off`. examples: - name: Create a storage container in a storage account. - text: az storage container create -n MyStorageContainer + text: az storage container create -n mystoragecontainer - name: Create a storage container in a storage account and return an error if the container already exists. - text: az storage container create -n MyStorageContainer --fail-on-exist + text: az storage container create -n mystoragecontainer --fail-on-exist - name: Create a storage container in a storage account and allow public read access for blobs. - text: az storage container create -n MyStorageContainer --public-access blob + text: az storage container create -n mystoragecontainer --public-access blob """ helps['storage container delete'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/storage/_validators.py b/src/azure-cli/azure/cli/command_modules/storage/_validators.py index 458ac3d2376..861ef267133 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_validators.py @@ -129,8 +129,7 @@ def validate_client_parameters(cmd, namespace): if is_storagev2(prefix): from azure.cli.core._profile import Profile profile = Profile(cli_ctx=cmd.cli_ctx) - n.token_credential, _, _ = profile.get_login_credentials( - resource="https://storage.azure.com", subscription_id=n._subscription) + n.token_credential, _, _ = profile.get_login_credentials(subscription_id=n._subscription) # Otherwise, we will assume it is in track1 and keep previous token updater else: n.token_credential = _create_token_credential(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_validators_azure_stack.py b/src/azure-cli/azure/cli/command_modules/storage/_validators_azure_stack.py index 9c79e5f4a2e..c9ab00d3bec 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_validators_azure_stack.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_validators_azure_stack.py @@ -128,8 +128,7 @@ def validate_client_parameters(cmd, namespace): if is_storagev2(prefix): from azure.cli.core._profile import Profile profile = Profile(cli_ctx=cmd.cli_ctx) - n.token_credential, _, _ = profile.get_login_credentials( - resource="https://storage.azure.com", subscription_id=n._subscription) + n.token_credential, _, _ = profile.get_login_credentials(subscription_id=n._subscription) # Otherwise, we will assume it is in track1 and keep previous token updater else: n.token_credential = _create_token_credential(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/storage/operations/filesystem.py b/src/azure-cli/azure/cli/command_modules/storage/operations/filesystem.py index cc4d6c98461..4b18077d3e6 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/operations/filesystem.py +++ b/src/azure-cli/azure/cli/command_modules/storage/operations/filesystem.py @@ -15,5 +15,5 @@ def exists(cmd, client, timeout=None): from azure.cli.command_modules.storage.track2_util import _dont_fail_on_exist StorageErrorCode = cmd.get_models("_shared.models#StorageErrorCode", resource_type=ResourceType.DATA_STORAGE_FILEDATALAKE) - _dont_fail_on_exist(ex, StorageErrorCode.blob_not_found) + _dont_fail_on_exist(ex, StorageErrorCode.container_not_found) return False diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_adls_filesystem_scenarios.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_adls_filesystem_scenarios.yaml index 235c90d80ca..c12851b8438 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_adls_filesystem_scenarios.yaml +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_adls_filesystem_scenarios.yaml @@ -16,7 +16,7 @@ interactions: - -n -g --query -o User-Agent: - python/3.7.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -32,7 +32,7 @@ interactions: content-type: - application/json date: - - Mon, 19 Oct 2020 05:45:04 GMT + - Fri, 23 Oct 2020 09:17:19 GMT expires: - '-1' pragma: @@ -69,7 +69,7 @@ interactions: - -n -g -o User-Agent: - python/3.7.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python AZURECLI/2.14.0 accept-language: - en-US method: POST @@ -85,7 +85,7 @@ interactions: content-type: - application/json date: - - Mon, 19 Oct 2020 05:45:05 GMT + - Fri, 23 Oct 2020 09:17:20 GMT expires: - '-1' pragma: @@ -101,10 +101,47 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Fri, 23 Oct 2020 09:17:21 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://clitest000002.blob.core.windows.net/filesystem000003?restype=container + response: + body: + string: "\uFEFFContainerNotFoundThe + specified container does not exist.\nRequestId:adcba596-e01e-0067-7d1d-a9a4af000000\nTime:2020-10-23T09:17:24.1007288Z" + headers: + content-length: + - '225' + content-type: + - application/xml + date: + - Fri, 23 Oct 2020 09:17:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ContainerNotFound + x-ms-version: + - '2020-02-10' + status: + code: 404 + message: The specified container does not exist. - request: body: null headers: @@ -121,7 +158,7 @@ interactions: x-ms-blob-public-access: - blob x-ms-date: - - Mon, 19 Oct 2020 05:45:06 GMT + - Fri, 23 Oct 2020 09:17:24 GMT x-ms-version: - '2020-02-10' method: PUT @@ -133,11 +170,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:09 GMT + - Fri, 23 Oct 2020 09:17:25 GMT etag: - - '"0x8D873F223B040FC"' + - '"0x8D8773474AA9EF0"' last-modified: - - Mon, 19 Oct 2020 05:45:09 GMT + - Fri, 23 Oct 2020 09:17:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -157,7 +194,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:09 GMT + - Fri, 23 Oct 2020 09:17:25 GMT x-ms-version: - '2020-02-10' method: GET @@ -169,11 +206,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:09 GMT + - Fri, 23 Oct 2020 09:17:26 GMT etag: - - '"0x8D873F223B040FC"' + - '"0x8D8773474AA9EF0"' last-modified: - - Mon, 19 Oct 2020 05:45:09 GMT + - Fri, 23 Oct 2020 09:17:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-public-access: @@ -207,7 +244,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:10 GMT + - Fri, 23 Oct 2020 09:17:26 GMT x-ms-version: - '2020-02-10' method: GET @@ -219,11 +256,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:11 GMT + - Fri, 23 Oct 2020 09:17:26 GMT etag: - - '"0x8D873F223B040FC"' + - '"0x8D8773474AA9EF0"' last-modified: - - Mon, 19 Oct 2020 05:45:09 GMT + - Fri, 23 Oct 2020 09:17:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-public-access: @@ -261,7 +298,7 @@ interactions: x-ms-blob-public-access: - container x-ms-date: - - Mon, 19 Oct 2020 05:45:11 GMT + - Fri, 23 Oct 2020 09:17:27 GMT x-ms-version: - '2020-02-10' method: PUT @@ -273,11 +310,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:12 GMT + - Fri, 23 Oct 2020 09:17:28 GMT etag: - - '"0x8D873F225D74641"' + - '"0x8D8773476C2317B"' last-modified: - - Mon, 19 Oct 2020 05:45:12 GMT + - Fri, 23 Oct 2020 09:17:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -297,7 +334,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:12 GMT + - Fri, 23 Oct 2020 09:17:28 GMT x-ms-version: - '2020-02-10' method: GET @@ -309,11 +346,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:12 GMT + - Fri, 23 Oct 2020 09:17:29 GMT etag: - - '"0x8D873F225D74641"' + - '"0x8D8773476C2317B"' last-modified: - - Mon, 19 Oct 2020 05:45:12 GMT + - Fri, 23 Oct 2020 09:17:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-public-access: @@ -349,7 +386,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:13 GMT + - Fri, 23 Oct 2020 09:17:30 GMT x-ms-version: - '2020-02-10' method: PUT @@ -361,11 +398,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:14 GMT + - Fri, 23 Oct 2020 09:17:30 GMT etag: - - '"0x8D873F2272DCC98"' + - '"0x8D87734781D81E1"' last-modified: - - Mon, 19 Oct 2020 05:45:14 GMT + - Fri, 23 Oct 2020 09:17:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -385,7 +422,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:15 GMT + - Fri, 23 Oct 2020 09:17:31 GMT x-ms-version: - '2020-02-10' method: GET @@ -397,11 +434,11 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:15 GMT + - Fri, 23 Oct 2020 09:17:31 GMT etag: - - '"0x8D873F2272DCC98"' + - '"0x8D87734781D81E1"' last-modified: - - Mon, 19 Oct 2020 05:45:14 GMT + - Fri, 23 Oct 2020 09:17:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-default-encryption-scope: @@ -433,7 +470,7 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.6.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:16 GMT + - Fri, 23 Oct 2020 09:17:32 GMT x-ms-version: - '2020-02-10' method: GET @@ -441,16 +478,16 @@ interactions: response: body: string: "\uFEFFfilesystem000003Mon, - 19 Oct 2020 05:45:09 GMT\"0x8D873F223B040FC\"unlockedavailableblob$account-encryption-keyfalsefalsefalsefilesystem000004Mon, - 19 Oct 2020 05:45:12 GMT\"0x8D873F225D74641\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefilesystem000005Mon, - 19 Oct 2020 05:45:14 GMT\"0x8D873F2272DCC98\"unlockedavailable$account-encryption-keyfalsefalsefalsefilesystem000003Fri, + 23 Oct 2020 09:17:25 GMT\"0x8D8773474AA9EF0\"unlockedavailableblob$account-encryption-keyfalsefalsefalsefilesystem000004Fri, + 23 Oct 2020 09:17:28 GMT\"0x8D8773476C2317B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefilesystem000005Fri, + 23 Oct 2020 09:17:31 GMT\"0x8D87734781D81E1\"unlockedavailable$account-encryption-keyfalsefalsefalse" headers: content-type: - application/xml date: - - Mon, 19 Oct 2020 05:45:17 GMT + - Fri, 23 Oct 2020 09:17:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -474,7 +511,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:17 GMT + - Fri, 23 Oct 2020 09:17:33 GMT x-ms-version: - '2020-02-10' method: DELETE @@ -486,7 +523,7 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:18 GMT + - Fri, 23 Oct 2020 09:17:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -508,7 +545,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:19 GMT + - Fri, 23 Oct 2020 09:17:34 GMT x-ms-version: - '2020-02-10' method: DELETE @@ -520,7 +557,7 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:19 GMT + - Fri, 23 Oct 2020 09:17:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -542,7 +579,7 @@ interactions: User-Agent: - azsdk-python-storage-dfs/12.2.0b1 Python/3.7.7 (Windows-10-10.0.19041-SP0) x-ms-date: - - Mon, 19 Oct 2020 05:45:20 GMT + - Fri, 23 Oct 2020 09:17:35 GMT x-ms-version: - '2020-02-10' method: DELETE @@ -554,7 +591,7 @@ interactions: content-length: - '0' date: - - Mon, 19 Oct 2020 05:45:21 GMT + - Fri, 23 Oct 2020 09:17:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_adls_gen2_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_adls_gen2_scenarios.py index 254c5fe958f..fdece69638a 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_adls_gen2_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_adls_gen2_scenarios.py @@ -228,6 +228,8 @@ def test_adls_filesystem_scenarios(self, resource_group, storage_account): # Test with account key filesystem1 = self.create_random_name(prefix='filesystem', length=24) + self.storage_cmd('storage fs exists -n {}', account_info, filesystem1) \ + .assert_with_checks(JMESPathCheck('exists', False)) self.storage_cmd('storage fs create -n {} --public-access file', account_info, filesystem1) self.storage_cmd('storage fs exists -n {}', account_info, filesystem1) \ .assert_with_checks(JMESPathCheck('exists', True)) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index dd254be542c..0343a2dcfe1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2703,7 +2703,10 @@ def get_vmss(cmd, resource_group_name, name, instance_id=None): def get_vmss_modified(cmd, resource_group_name, name, instance_id=None): client = _compute_client_factory(cmd.cli_ctx) if instance_id is not None: - return client.virtual_machine_scale_set_vms.get(resource_group_name, name, instance_id) + vms = client.virtual_machine_scale_set_vms.get(resource_group_name, name, instance_id) + # To avoid unnecessary permission check of image + vms.storage_profile.image_reference = None + return vms vmss = client.virtual_machine_scale_sets.get(resource_group_name, name) # To avoid unnecessary permission check of image vmss.virtual_machine_profile.storage_profile.image_reference = None diff --git a/src/azure-cli/azure/cli/command_modules/vm/disk_encryption.py b/src/azure-cli/azure/cli/command_modules/vm/disk_encryption.py index 2dc98a82d7b..037fcae9918 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/disk_encryption.py +++ b/src/azure-cli/azure/cli/command_modules/vm/disk_encryption.py @@ -446,6 +446,9 @@ def encrypt_vmss(cmd, resource_group_name, vmss_name, # pylint: disable=too-man if old_ext.type != ext.type or old_ext.name != ext.name) vmss.virtual_machine_profile.extension_profile = VirtualMachineScaleSetExtensionProfile(extensions=exts) + # Avoid unnecessary permission error + vmss.virtual_machine_profile.storage_profile.image_reference = None + poller = compute_client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss) LongRunningOperation(cmd.cli_ctx)(poller) _show_post_action_message(resource_group_name, vmss.name, vmss.upgrade_policy.mode == UpgradeMode.manual, True) @@ -488,6 +491,10 @@ def decrypt_vmss(cmd, resource_group_name, vmss_name, volume_type=None, force=Fa index = vmss.virtual_machine_profile.extension_profile.extensions.index(ade_extension[0]) vmss.virtual_machine_profile.extension_profile.extensions[index] = ext + + # Avoid unnecessary permission error + vmss.virtual_machine_profile.storage_profile.image_reference = None + poller = compute_client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss) LongRunningOperation(cmd.cli_ctx)(poller) _show_post_action_message(resource_group_name, vmss.name, vmss.upgrade_policy.mode == UpgradeMode.manual, False) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 45fbcb474e3..e0a6b4a5be1 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -22,7 +22,7 @@ azure-mgmt-applicationinsights==0.1.1 azure-mgmt-authorization==0.61.0 azure-mgmt-batch==9.0.0 azure-mgmt-batchai==2.0.0 -azure-mgmt-billing==0.2.0 +azure-mgmt-billing==1.0.0 azure-mgmt-botservice==0.2.0 azure-mgmt-cdn==5.0.0 azure-mgmt-cognitiveservices==6.3.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 45fbcb474e3..e0a6b4a5be1 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -22,7 +22,7 @@ azure-mgmt-applicationinsights==0.1.1 azure-mgmt-authorization==0.61.0 azure-mgmt-batch==9.0.0 azure-mgmt-batchai==2.0.0 -azure-mgmt-billing==0.2.0 +azure-mgmt-billing==1.0.0 azure-mgmt-botservice==0.2.0 azure-mgmt-cdn==5.0.0 azure-mgmt-cognitiveservices==6.3.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 2a02f0e1bef..eab211e1fd9 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -22,7 +22,7 @@ azure-mgmt-applicationinsights==0.1.1 azure-mgmt-authorization==0.61.0 azure-mgmt-batch==9.0.0 azure-mgmt-batchai==2.0.0 -azure-mgmt-billing==0.2.0 +azure-mgmt-billing==1.0.0 azure-mgmt-botservice==0.2.0 azure-mgmt-cdn==5.0.0 azure-mgmt-cognitiveservices==6.3.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 1af9aab15b1..3440d231a08 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -67,7 +67,7 @@ 'azure-mgmt-authorization~=0.61.0', 'azure-mgmt-batch~=9.0.0', 'azure-mgmt-batchai~=2.0', - 'azure-mgmt-billing~=0.2', + 'azure-mgmt-billing==1.0.0', 'azure-mgmt-botservice~=0.2.0', 'azure-mgmt-cdn==5.0.0', 'azure-mgmt-cognitiveservices~=6.3.0',